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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #06b6d4;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.ad-disclosure {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    background-color: #cbd5e1;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.intro-section {
    padding: 5rem 2rem;
}

.split-layout {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.text-block p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.image-block {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.benefits-grid {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.benefits-grid h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.benefit-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.benefit-card p {
    color: var(--text-light);
}

.service-selection {
    padding: 5rem 2rem;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

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

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.trust-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    padding: 2rem;
    background-color: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial .author {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-full {
    padding: 5rem 2rem;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--bg-white);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
}

.site-footer {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #cbd5e1;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.page-hero {
    padding: 5rem 2rem 3rem;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-content {
    padding: 4rem 2rem;
}

.values-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

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

.process-section {
    padding: 5rem 2rem;
}

.commitment-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.commitment-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.commitment-section p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.services-list {
    padding: 3rem 2rem;
}

.service-item {
    margin-bottom: 4rem;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-info .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-info p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    max-width: 600px;
}

.consultation-cta {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.consultation-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.consultation-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-content {
    padding: 4rem 2rem;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.info-block p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.location-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.location-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.location-section p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.thanks-content {
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-message {
    max-width: 700px;
    text-align: center;
}

.thanks-message h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.thanks-message p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

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

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-dark);
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .thanks-message h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-content {
        padding: 3rem 1.5rem;
    }

    .benefit-cards {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

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