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

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

.ad-disclosure {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    position: relative;
    z-index: 100;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 99;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f7e;
}

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

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

.nav-links a:hover {
    color: #2c5f7e;
}

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

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

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

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

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

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

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

.cta-primary:hover {
    background-color: #234a5f;
}

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

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

.visual-block {
    flex: 1;
    overflow: hidden;
}

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

.text-block {
    flex: 1;
    padding: 60px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.text-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.text-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.insight-section {
    padding: 80px 6%;
    background-color: #f4f6f8;
}

.insight-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.insight-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.insight-card {
    flex: 1;
    max-width: 350px;
    padding: 35px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f7e;
}

.insight-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 6%;
    background-color: #fff;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-selector {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-option {
    display: flex;
    min-height: 350px;
    border-bottom: 1px solid #e0e0e0;
}

.service-option:last-child {
    border-bottom: none;
}

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

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

.service-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #666;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f7e;
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 14px 35px;
    background-color: #2c5f7e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.select-service-btn:hover {
    background-color: #234a5f;
}

.form-container {
    max-width: 600px;
    margin: 60px auto 0;
    padding: 50px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.selected-service-display {
    font-size: 18px;
    color: #2c5f7e;
    margin-bottom: 30px;
    font-weight: 600;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

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

.submit-btn:hover {
    background-color: #234a5f;
}

.testimonials-section {
    padding: 80px 6%;
    background-color: #f4f6f8;
}

.testimonials-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.testimonials-split {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    padding: 40px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 17px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f7e;
    font-size: 15px;
}

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

.cta-content {
    flex: 1;
    padding: 60px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c5f7e;
    color: #fff;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content p {
    font-size: 17px;
    margin-bottom: 30px;
    max-width: 550px;
}

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

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

.cta-visual {
    flex: 1;
    overflow: hidden;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 6% 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-disclaimer {
    padding: 25px;
    background-color: #252525;
    border-radius: 4px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 6%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    margin-right: 30px;
}

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

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

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

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

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

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

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

    .service-option {
        flex-direction: column;
    }

    .insight-grid,
    .testimonials-split,
    .footer-content {
        flex-direction: column;
    }

    .nav-links {
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-content p {
        margin-right: 0;
    }
}