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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

.main-nav {
    background-color: #1a365d;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #90cdf4;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #cbd5e0;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #2d3748;
    padding: 1rem 2rem;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #e2e8f0;
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #90cdf4;
}

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

.hero-left {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7fafc;
}

.hero-left h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-left p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-btn:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
}

.split-reverse {
    display: flex;
    min-height: 500px;
}

.split-standard {
    display: flex;
    min-height: 500px;
}

.split-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.split-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.inline-cta {
    display: inline-block;
    color: #2b6cb0;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.inline-cta:hover {
    color: #2c5282;
    text-decoration: underline;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 3rem;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #edf2f7;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 250px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    padding: 1.5rem 1.5rem 0.75rem 1.5rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: #4a5568;
    font-size: 0.95rem;
}

.price-tag {
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
}

.select-service-btn {
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 0.875rem 1.5rem;
    width: calc(100% - 3rem);
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
}

.testimonials-split {
    display: flex;
    background-color: #1a365d;
    color: #ffffff;
}

.testimonial-block {
    flex: 1;
    padding: 4rem 3rem;
}

.testimonial-block blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-block cite {
    font-style: normal;
    font-weight: 600;
    color: #90cdf4;
}

.form-section-split {
    display: flex;
    min-height: 600px;
    background-color: #f7fafc;
}

.form-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.05rem;
    color: #4a5568;
}

.form-right {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2b6cb0;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
}

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 3rem 2rem 1.5rem 2rem;
}

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

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

.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #90cdf4;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem;
}

.disclaimer {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #cbd5e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-cookie.accept {
    background-color: #2b6cb0;
    color: #ffffff;
}

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

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

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

.page-hero-split {
    display: flex;
    min-height: 450px;
}

.hero-content-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7fafc;
}

.hero-content-left h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 1.25rem;
}

.hero-content-left p {
    font-size: 1.15rem;
    color: #4a5568;
}

.hero-image-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
}

.value-item p {
    color: #4a5568;
    font-size: 0.95rem;
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    border-bottom: 1px solid #e2e8f0;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1.25rem;
}

.service-detail-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 1.5rem;
}

.service-detail-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.contact-info-split {
    display: flex;
    min-height: 500px;
}

.contact-details {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #f7fafc;
}

.contact-details h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.contact-item p {
    color: #4a5568;
    font-size: 1rem;
}

.contact-map {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.contact-approach {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 3rem;
}

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

.approach-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.approach-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
}

.approach-step p {
    color: #4a5568;
    font-size: 0.95rem;
}

.thanks-section {
    display: flex;
    min-height: 600px;
}

.thanks-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f7fafc;
}

.thanks-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: #2b6cb0;
    margin-bottom: 2rem;
}

.thanks-details {
    margin-bottom: 2rem;
}

.thanks-details p {
    color: #4a5568;
    margin-bottom: 1rem;
}

#selectedServiceDisplay {
    font-weight: 600;
    color: #2d3748;
}

.thanks-next {
    margin-bottom: 2rem;
}

.thanks-next h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
}

.thanks-next ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.thanks-next li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2b6cb0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2b6cb0;
    color: #ffffff;
}

.thanks-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

.legal-page h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 1rem;
}

.last-updated {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3748;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-page li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-reverse,
    .split-standard,
    .page-hero-split,
    .form-section-split,
    .contact-info-split,
    .thanks-section {
        flex-direction: column;
    }

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

    .testimonials-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-content,
    .split-image,
    .form-left,
    .form-right,
    .service-detail-content,
    .service-detail-image,
    .contact-details,
    .contact-map,
    .thanks-content,
    .thanks-image {
        min-height: 400px;
    }

    .services-grid-split {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 500px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .section-title {
        font-size: 2rem;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }

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

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