* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-orange: #f59e0b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.split-hero {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background-color: var(--bg-light);
}

.split-visual {
    flex: 1;
    min-height: 400px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--primary-dark);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 32px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%232563eb" width="1200" height="800"/><path fill="%231e40af" opacity="0.3" d="M0,400 L300,200 L600,400 L900,100 L1200,300 L1200,800 L0,800 Z"/></svg>');
    background-size: cover;
    background-position: center;
}

.split-reverse {
    display: flex;
    flex-direction: row-reverse;
    min-height: 500px;
    align-items: stretch;
}

.split-section {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.split-content h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.split-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.benefits-list {
    list-style: none;
    margin-top: 24px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 1.0625rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.feature-image {
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
}

.feature-1 {
    background: linear-gradient(45deg, #10b981 0%, #059669 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%2310b981" width="1200" height="800"/><circle cx="200" cy="200" r="150" fill="%23059669" opacity="0.3"/><circle cx="900" cy="500" r="200" fill="%23047857" opacity="0.2"/></svg>');
    background-size: cover;
}

.services-preview {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 48px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 80px;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: var(--primary-dark);
}

.split-form {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f59e0b" width="1200" height="800"/><polygon points="0,800 400,600 800,800" fill="%23d97706" opacity="0.4"/><polygon points="400,0 800,200 1200,0 1200,400 0,400" fill="%23b45309" opacity="0.3"/></svg>');
    background-size: cover;
}

.trust-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.trust-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 48px;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-light);
}

.cta-bottom {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-bottom h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-bottom p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 32px;
}

.cta-bottom .cta-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-bottom .cta-primary:hover {
    background-color: var(--bg-light);
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--secondary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #059669;
}

.cookie-btn.reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    padding: 80px 0 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
}

.about-1 {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%236366f1" width="1200" height="800"/><rect x="100" y="100" width="300" height="400" fill="%234f46e5" opacity="0.3"/><rect x="700" y="200" width="400" height="500" fill="%234338ca" opacity="0.2"/></svg>');
    background-size: cover;
}

.about-2 {
    background: linear-gradient(45deg, #ec4899 0%, #db2777 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23ec4899" width="1200" height="800"/><ellipse cx="600" cy="400" rx="400" ry="300" fill="%23db2777" opacity="0.4"/></svg>');
    background-size: cover;
}

.values-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 48px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-item {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-intro {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    text-align: center;
}

.team-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

.timeline-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.timeline-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 48px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 100px;
}

.timeline-item p {
    font-size: 1.125rem;
    color: var(--text-light);
    padding-top: 4px;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail {
    margin-bottom: 60px;
}

.price-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
}

.features-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1.2;
}

.service-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: var(--bg-light);
}

.service-img-1 {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.service-img-2 {
    background: linear-gradient(45deg, #14b8a6 0%, #0d9488 100%);
}

.service-img-3 {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
}

.service-img-4 {
    background: linear-gradient(45deg, #a855f7 0%, #9333ea 100%);
}

.service-img-5 {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.pricing-notes {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.pricing-notes h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 48px;
}

.notes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.note-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
}

.note-item h3 {
    font-size: 1.375rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.note-item p {
    color: var(--text-light);
}

.contact-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.contact-method {
    margin-bottom: 32px;
}

.contact-method h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-method p {
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.method-note {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-map {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%2364748b" width="1200" height="800"/><circle cx="600" cy="400" r="50" fill="white" opacity="0.8"/><circle cx="600" cy="400" r="100" fill="none" stroke="white" stroke-width="2" opacity="0.5"/><circle cx="600" cy="400" r="150" fill="none" stroke="white" stroke-width="2" opacity="0.3"/></svg>');
    background-size: cover;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 48px;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 32px;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-hero {
    padding: 100px 0;
    background-color: var(--bg-light);
    min-height: 500px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.service-confirmation {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    border: 2px solid var(--primary-color);
}

.next-steps {
    margin: 48px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: steps;
    max-width: 600px;
    margin: 0 auto;
}

.steps-list li {
    counter-increment: steps;
    padding: 16px 0 16px 50px;
    position: relative;
    font-size: 1.125rem;
    color: var(--text-light);
}

.steps-list li:before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 16px;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.contact-reminder {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.contact-reminder a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-reminder a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.update-date {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-page ul li {
    margin-bottom: 8px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9375rem;
    }

    .split-hero,
    .split-reverse,
    .split-section,
    .split-form,
    .contact-split {
        flex-direction: column;
    }

    .split-content {
        padding: 40px 20px;
    }

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

    .hero-text p {
        font-size: 1.0625rem;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .trust-stats {
        flex-direction: column;
        gap: 24px;
    }

    .values-grid,
    .notes-grid {
        flex-direction: column;
    }

    .timeline-item {
        flex-direction: column;
        gap: 8px;
    }

    .year {
        font-size: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}