/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
    overflow-x: hidden;
}
svg {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ffffff;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff40ac, #ff6bc7);
    color: #ffffff;
    border-color: #ff40ac;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e6399a, #ff40ac);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 64, 172, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ff40ac;
    border-color: #ff40ac;
}

.btn-secondary:hover {
    background: #ff40ac;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 64, 172, 0.2);
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid #333;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff40ac;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff40ac;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ff40ac;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #ff40ac);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #c0c0c0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header svg {
    margin-bottom: 1.5rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #b0b0b0;
}

/* Grid Layouts */
.about-grid, .services-grid, .reviews-grid, .team-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 3rem;
}

.about-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Card Styles */
.about-card, .service-card, .review-card, .team-member {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.about-card:hover, .service-card:hover, .review-card:hover, .team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 64, 172, 0.1);
    border-color: #ff40ac;
}

.about-card svg, .service-card svg {
    margin-bottom: 1.5rem;
}

.about-card h3, .service-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.about-card p, .service-card p {
    color: #b0b0b0;
}

/* Service Cards */
.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff40ac;
    display: block;
    margin: 1rem 0;
}

.service-card .price-note {
    font-size: 0.9rem;
    color: #888;
    margin-left: 0.5rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff40ac;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #b0b0b0;
}

/* Review Cards */
.review-stars {
    color: #ff40ac;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-author {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.review-author strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.3rem;
}

.review-author span {
    color: #888;
    font-size: 0.9rem;
}

/* Offers Section */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 64, 172, 0.15);
    border-color: #ff40ac;
}

.offer-card.featured {
    border: 2px solid #ff40ac;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff40ac;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.offer-price {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff40ac;
}

.price-period {
    font-size: 1rem;
    color: #888;
}

.offer-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.offer-features li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 1.5rem;
}

.offer-features li::before {
    content: '✓';
    color: #ff40ac;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 80px 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #333;
    border-radius: 8px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ff40ac;
    box-shadow: 0 0 0 3px rgba(255, 64, 172, 0.1);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-text h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-text p {
    color: #b0b0b0;
    margin: 0;
}

/* Forms */
.contact-form, .newsletter-form {
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #333;
    border-radius: 8px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff40ac;
    box-shadow: 0 0 0 3px rgba(255, 64, 172, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Services Page Styles */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid #333;
    background: transparent;
    color: #b0b0b0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #ff40ac;
    color: #ffffff;
    border-color: #ff40ac;
}

.services-catalog {
    display: grid;
    gap: 2rem;
}

.service-item {
    background: #2a2a2a;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 200px 1fr;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 64, 172, 0.1);
    border-color: #ff40ac;
}

.service-image {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
}

.service-content {
    padding: 2rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-rating {
    text-align: right;
}

.stars {
    color: #ff40ac;
    font-size: 1.1rem;
}

.rating-text {
    color: #888;
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.3rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 1.2rem;
}

.service-features li::before {
    content: '•';
    color: #ff40ac;
    position: absolute;
    left: 0;
}

.service-pricing {
    margin: 1.5rem 0;
}

.service-pricing .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff40ac;
}

.service-pricing .price-note {
    font-size: 0.9rem;
    color: #888;
    margin-left: 0.5rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Company Story Section */
.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 64, 172, 0.1);
    border-color: #ff40ac;
}

.value-card svg {
    margin-bottom: 1.5rem;
}

/* Team Members */
.member-avatar {
    text-align: center;
    margin-bottom: 1.5rem;
}

.member-role {
    color: #ff40ac;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #b0b0b0;
}

.what-happens-next {
    margin: 4rem 0;
}

.next-steps {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.step-content p {
    color: #b0b0b0;
    margin: 0;
}

.thank-you-actions {
    margin: 4rem 0;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-reminder {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    margin-top: 3rem;
}

.contact-reminder h3 {
    margin-bottom: 1rem;
}

.contact-reminder p {
    margin: 0.5rem 0;
}

.contact-reminder strong {
    color: #ff40ac;
}

/* Map Placeholder */
.location-section {
    background: #2a2a2a;
}

.map-placeholder {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    text-align: center;
    padding: 80px 0;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content svg {
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Cookie Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    border-top: 1px solid #333;
    padding: 1rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: 1px solid #333;
    background: transparent;
    color: #b0b0b0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-buttons button:hover {
    background: #ff40ac;
    color: #ffffff;
    border-color: #ff40ac;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1002;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    max-width: 500px;
    width: 90%;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1rem 0;
}

.cookie-option input[type="checkbox"] {
    margin: 0;
}

/* Footer */
.footer {
    background: #0f0f0f;
    color: #b0b0b0;
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff40ac;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    color: #b0b0b0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff40ac;
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-form {
        grid-template-columns: 1fr 1fr auto;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid #333;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .offer-card, .contact-form {
        padding: 1.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    section {
        padding: 60px 0;
    }
    [class*="-grid"] {
    grid-template-columns: 1fr;}
    .legal-document {
    padding: 3rem 1rem !important;}
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: #ff40ac;
}

.bg-accent {
    background-color: #ff40ac;
}

.border-accent {
    border-color: #ff40ac;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Legal Pages Styles */
.legal-content {
    padding: 40px 0 80px;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: #2a2a2a;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #333;
    line-height: 1.7;
}

.legal-document h2 {
    color: #ff40ac;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-document h3 {
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legal-document h4 {
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.legal-document p {
    margin-bottom: 1.2rem;
    color: #c0c0c0;
}

.legal-document ul, .legal-document ol {
    margin: 1rem 0 1.5rem 2rem;
    color: #b0b0b0;
}

.legal-document li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.legal-document .contact-info {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
    margin-top: 1.5rem;
}

.legal-document .contact-info p {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.legal-document .contact-info strong {
    color: #ffffff;
}

/* Form Error Styles */
.form-error {
    background: #ff4444;
    color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: none;
}

.field-error {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 0.3rem;
    display: block;
}

input.error, select.error, textarea.error {
    border-color: #ff4444 !important;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1) !important;
}

/* Print Styles */
@media print {
    .navbar, .footer, .cookie-banner, .cookie-modal {
        display: none !important;
    }
    
    body {
        color: #000 !important;
        background: #fff !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .legal-document {
        background: #fff !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .legal-document h2, .legal-document h3, .legal-document h4 {
        color: #000 !important;
    }
    
    .legal-document p, .legal-document li {
        color: #333 !important;
    }
}