* {
    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: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.8rem;
    border-bottom: 1px solid #dee2e6;
}

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

.nav-left .brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f7d;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 30px;
}

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

.nav-right a:hover {
    color: #2c5f7d;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a2634;
}

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

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2c5f7d;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    background-color: #5d8ca3;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #4a7589;
}

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

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a2634;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #495057;
}

.split-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-narrative {
    padding: 100px 8%;
    background-color: #2c5f7d;
    color: #ffffff;
}

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

.narrative-container h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
    text-align: center;
}

.narrative-container p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.services-showcase {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.services-showcase h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2634;
}

.service-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.card-image {
    height: 280px;
    overflow: hidden;
}

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

.card-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1a2634;
}

.card-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #495057;
    flex-grow: 1;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f7d;
    margin-bottom: 20px;
}

.select-service {
    background-color: #2c5f7d;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1e4a5f;
}

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

.form-intro {
    flex: 1;
    padding: 80px 60px;
    background-color: #2c5f7d;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

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

.trust-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1a2634;
}

.testimonial {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #2c5f7d;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #495057;
    margin-bottom: 10px;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #2c5f7d;
}

.trust-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-split {
    background-color: #1a2634;
    color: #ffffff;
    padding-top: 60px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    padding: 0 5% 50px 5%;
    gap: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    color: #adb5bd;
    line-height: 1.7;
}

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

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

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

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

.footer-disclaimer {
    background-color: #141d29;
    padding: 30px 5%;
    font-size: 0.9rem;
    color: #adb5bd;
    line-height: 1.6;
}

.footer-bottom {
    background-color: #0f161f;
    padding: 20px 5%;
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

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

.page-hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a2634;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #495057;
    max-width: 600px;
}

.page-hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.values-section {
    padding: 100px 5%;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2634;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a2634;
}

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

.cta-section-split {
    padding: 100px 5%;
    background-color: #2c5f7d;
    text-align: center;
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.cta-content-centered p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.page-intro {
    padding: 80px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.page-intro h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a2634;
}

.page-intro p {
    font-size: 1.2rem;
    color: #495057;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    margin-bottom: 60px;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a2634;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #495057;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #495057;
}

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

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f7d;
    margin-bottom: 25px;
}

.service-detail-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.contact-hero {
    padding: 100px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a2634;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #495057;
}

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

.contact-details {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c5f7d;
}

.contact-item p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.contact-cta {
    padding: 100px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a2634;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #495057;
}

.thanks-section {
    padding: 120px 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #2c5f7d;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #495057;
}

.service-confirmation {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #2c5f7d;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: #2c3e50;
}

.legal-content {
    padding: 80px 8%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #1a2634;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c5f7d;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #495057;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 25px;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: #495057;
    line-height: 1.6;
}

.legal-content a {
    color: #2c5f7d;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1e4a5f;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2634;
    color: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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: 30px;
}

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

.cookie-content a {
    color: #5d8ca3;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cookie-accept:hover {
    background-color: #1e4a5f;
}

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #5a6268;
}

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

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

    .hero-content,
    .split-content,
    .form-intro,
    .form-container,
    .page-hero-content,
    .service-detail-content,
    .contact-details {
        padding: 60px 40px;
    }

    .service-card {
        min-width: 300px;
    }

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

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 15px;
    }

    .nav-right {
        gap: 20px;
    }

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

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

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

    .values-grid-split {
        flex-direction: column;
    }

    .value-item {
        min-width: 100%;
    }
}