* {
    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;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-left .brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

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

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

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

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

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

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

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

.cta-button:hover {
    background-color: #1a252f;
}

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

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

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

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.split-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.services-grid {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 18px;
    color: #6c757d;
}

.service-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex: 0 1 calc(50% - 16px);
    max-width: 480px;
    display: flex;
    flex-direction: column;
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 24px 20px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 24px 20px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2980b9;
}

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

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

.form-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-left p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
}

.selected-service-display {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
}

.selected-service-display h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.selected-service-display p {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
}

.form-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

#main-form {
    width: 100%;
    max-width: 500px;
}

#main-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    margin-top: 20px;
}

#main-form label:first-of-type {
    margin-top: 0;
}

#main-form input,
#main-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

#main-form input:focus,
#main-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 28px;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #1a252f;
}

.trust-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.trust-content-centered {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content-centered h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-points {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-point {
    flex: 1;
    min-width: 280px;
}

.trust-point h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-point p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

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

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

.inline-link {
    display: inline-block;
    margin-top: 16px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.inline-link:hover {
    color: #2980b9;
}

footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 60px 30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

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

.disclaimer {
    background-color: #2a2a2a;
    padding: 24px;
    margin-top: 40px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

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

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

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

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

.page-header {
    padding: 100px 60px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #6c757d;
}

.content-section {
    padding: 60px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-section h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.content-section ul {
    margin: 16px 0 16px 24px;
}

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

.contact-info-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-col {
    flex: 1;
    min-width: 280px;
}

.contact-col h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.contact-col .email-display {
    font-size: 16px;
    color: #3498db;
    font-weight: 600;
    user-select: all;
}

.thanks-container {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.thanks-content .service-confirmation {
    background-color: #f0f4f8;
    padding: 20px;
    border-radius: 6px;
    margin: 32px 0;
}

.thanks-content .service-confirmation h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
}

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

    .nav-right {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-split,
    .value-split,
    .form-split,
    .insights-split {
        flex-direction: column;
    }

    .hero-left,
    .split-content,
    .form-left,
    .form-right {
        padding: 40px 20px;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .hero-right {
        min-height: 300px;
    }

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

    .trust-points {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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