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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
    text-decoration: none;
}

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background: #ecf0f1;
    border-radius: 4px;
}

.nav-right a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 7%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c5282;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    cursor: pointer;
}

.cta-primary:hover {
    background: #1e3a5f;
}

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

.cta-secondary:hover {
    background: #2c5282;
    color: #ffffff;
}

.split-section {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 7%;
    background: #ffffff;
}

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

.split-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.split-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.split-content li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.8rem;
}

.split-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-grid {
    padding: 6rem 5%;
    background: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.8rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    max-width: 500px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 1.6rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card .price {
    display: block;
    font-size: 1.8rem;
    color: #2c5282;
    font-weight: 700;
}

.testimonial-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #2c5282 0%, #1e3a5f 100%);
}

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

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1.1rem;
    color: #b8d4f1;
    font-style: normal;
}

.cta-section {
    padding: 6rem 5%;
    background: #ffffff;
}

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

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.cta-form {
    flex: 1;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

form input,
form select,
form textarea {
    padding: 1rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: #2c5282;
}

.btn-submit {
    padding: 1rem 2rem;
    background: #2c5282;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1e3a5f;
}

.footer-split {
    background: #1a2332;
    color: #cbd5e0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding: 4rem 5%;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding: 2rem 5%;
    text-align: center;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    color: #ffffff;
    font-size: 0.95rem;
    flex: 1;
}

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

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

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

.values-section {
    padding: 6rem 5%;
    background: #ffffff;
}

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

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

.value-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
}

.value-item h3 {
    font-size: 1.4rem;
    color: #2c5282;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.experience-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
}

.experience-content h2 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.experience-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-simple {
    padding: 6rem 5%;
    text-align: center;
    background: #ffffff;
}

.cta-simple h2 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-simple p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.service-detail-split {
    display: flex;
    min-height: 75vh;
    align-items: stretch;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 7%;
    background: #ffffff;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.service-detail-content ul {
    margin: 1.5rem 0 2rem 0;
    padding-left: 1.5rem;
}

.service-detail-content li {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 0.7rem;
}

.service-price {
    display: block;
    font-size: 2.2rem;
    color: #2c5282;
    font-weight: 700;
    margin: 1.5rem 0;
}

.service-detail-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.additional-services {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 3rem;
    font-weight: 700;
}

.additional-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.additional-item {
    flex: 1;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.additional-item h3 {
    font-size: 1.5rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.additional-item p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-tag {
    display: block;
    font-size: 1.6rem;
    color: #2c5282;
    font-weight: 700;
}

.service-form-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.form-container > p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    text-align: center;
}

.contact-split {
    display: flex;
    min-height: 80vh;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    padding: 5rem 7%;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h1 {
    font-size: 3rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

.info-block h3 {
    font-size: 1.3rem;
    color: #2c5282;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.info-block p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.info-block .note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-details {
    padding: 5rem 5%;
    background: #ffffff;
}

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

.details-container h2 {
    font-size: 2.3rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.details-container p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.details-container ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.details-container li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.8rem;
}

.directions-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

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

.directions-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.direction-item {
    flex: 1;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 1.4rem;
    color: #2c5282;
    margin-bottom: 1rem;
    font-weight: 600;
}

.direction-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thanks-container {
    max-width: 800px;
    background: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-content > p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    color: #2c5282;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.next-steps ul {
    padding-left: 1.5rem;
}

.next-steps li {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-reminder {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.contact-reminder p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.email-display {
    font-size: 1.2rem;
    color: #2c5282;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.legal-content {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 8px;
}

.legal-container h1 {
    font-size: 3rem;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.last-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    color: #2c5282;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: #2c5282;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-container p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-container ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-container li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookies-table thead {
    background: #f8f9fa;
}

.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2c5282;
    border-bottom: 2px solid #cbd5e0;
}

.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #e1e8ed;
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .hero-split,
    .split-section,
    .page-hero-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content,
    .split-content,
    .service-detail-content,
    .contact-info {
        padding: 3rem 5%;
    }

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

    .hero-content p {
        font-size: 1.05rem;
    }

    .split-content h2,
    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .service-cards,
    .values-grid,
    .additional-grid,
    .directions-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .cta-container {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
    }

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

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

    .nav-right {
        gap: 1rem;
    }

    .nav-right a {
        font-size: 0.9rem;
    }
}