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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #1a1a2e;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

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

.nav-right a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #4a90e2;
}

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

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

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #4a5568;
    max-width: 520px;
}

.hero-visual {
    flex: 1;
    background-color: #e8edf2;
    overflow: hidden;
    position: relative;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.intro-asymmetric {
    padding: 100px 5%;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.intro-text-wide {
    flex: 1.5;
}

.intro-text-wide h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.intro-text-wide p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.intro-card-offset {
    flex: 1;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.intro-card-offset img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
    background-color: #e8edf2;
}

.card-insight {
    font-size: 16px;
    color: #2c3e50;
    font-style: italic;
    line-height: 1.6;
}

.value-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    padding: 80px 5%;
    background-color: #f5f7fa;
}

.value-visual {
    flex: 1;
    background-color: #e8edf2;
}

.value-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.value-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.value-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-cards {
    padding: 100px 5%;
    background-color: #ffffff;
}

.services-cards h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e8edf2;
}

.service-card h4 {
    font-size: 22px;
    padding: 20px 20px 10px;
    color: #1a1a2e;
}

.service-card p {
    padding: 0 20px 15px;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.service-card .price {
    padding: 0 20px 20px;
    font-size: 26px;
    font-weight: 700;
    color: #2d5f8d;
}

.btn-select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background-color: #2d5f8d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-split {
    display: flex;
    padding: 80px 5%;
    background-color: #1a1a2e;
}

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

.trust-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #d0d7de;
}

.trust-visual {
    flex: 1;
    background-color: #2c3e50;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-stacked {
    padding: 100px 5%;
    background-color: #f5f7fa;
}

.approach-stacked h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a2e;
}

.approach-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    padding: 40px;
    background-color: #ffffff;
    border-left: 4px solid #2d5f8d;
}

.approach-block.reverse {
    flex-direction: row-reverse;
    border-left: none;
    border-right: 4px solid #2d5f8d;
}

.approach-number {
    font-size: 72px;
    font-weight: 700;
    color: #e8edf2;
    min-width: 120px;
}

.approach-text h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.approach-text p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.form-section-split {
    display: flex;
    padding: 80px 5%;
    background-color: #ffffff;
    gap: 60px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.form-intro p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    background-color: #f5f7fa;
    padding: 40px;
    border-radius: 8px;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
    padding: 15px;
    font-size: 16px;
    border: 1px solid #d0d7de;
    border-radius: 4px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px;
    background-color: #2d5f8d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 60px 5%;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.disclaimer-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-split {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 5% 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h5 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p,
.footer-col a {
    font-size: 15px;
    color: #d0d7de;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-col a:hover {
    color: #4a90e2;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
}

.footer-bottom p {
    font-size: 14px;
    color: #d0d7de;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    padding: 20px;
    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: 30px;
}

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

.cookie-content a {
    color: #4a90e2;
}

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

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

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

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

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

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

.content-page {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.content-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.content-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.content-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.content-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-page li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a5568;
}

.contact-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.contact-info h3 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a5568;
}

.contact-visual {
    flex: 1;
    background-color: #e8edf2;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.services-page {
    padding: 80px 5%;
}

.services-page h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-page {
    padding: 120px 5%;
    text-align: center;
    background-color: #f5f7fa;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2d5f8d;
}

.thanks-page p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 20px;
    max-width: 700px;
}

.thanks-page a {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 36px;
    background-color: #2d5f8d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.thanks-page a:hover {
    background-color: #1e4466;
}

@media (max-width: 768px) {
    .hero-split,
    .value-split-reverse,
    .trust-split,
    .form-section-split,
    .contact-split,
    .intro-asymmetric {
        flex-direction: column;
    }

    .nav-split {
        flex-direction: column;
        gap: 20px;
    }

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

    .service-card {
        width: 100%;
    }

    .approach-block,
    .approach-block.reverse {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
    }

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