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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #3182ce;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2c5aa0;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #4a5568;
}

.btn-reject:hover {
    background-color: #4a5568;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.header-left .logo {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ad-disclosure {
    font-size: 12px;
    color: #718096;
    padding: 6px 12px;
    background-color: #f7fafc;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 24px;
}

.main-nav a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2d3748;
}

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 80px 80px 80px 120px;
}

.hero-right {
    background-color: #e2e8f0;
    overflow: hidden;
}

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

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

.hero-subtitle {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: #2b6cb0;
    color: #ffffff;
}

.cta-primary:hover {
    background-color: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(43, 108, 176, 0.2);
}

.cta-secondary {
    background-color: transparent;
    color: #2b6cb0;
    border: 2px solid #2b6cb0;
}

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

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

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

.split-content,
.split-image {
    flex: 1;
}

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

.split-image {
    background-color: #edf2f7;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.benefit-list {
    margin: 24px 0;
    padding-left: 24px;
}

.benefit-list li {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 12px;
}

.insight-block {
    background-color: #2d3748;
    padding: 100px 60px;
}

.insight-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-block h2 {
    font-size: 40px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.insight-item {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.insight-item h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.testimonial-split {
    display: flex;
    background-color: #edf2f7;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-left {
    background-color: #e2e8f0;
}

.testimonial-content {
    max-width: 500px;
}

.testimonial-text {
    font-size: 19px;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.form-section {
    background-color: #f7fafc;
    padding: 100px 60px;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.form-left,
.form-right {
    flex: 1;
}

.form-left h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 24px;
}

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

.form-note {
    font-size: 14px;
    color: #718096;
    font-style: italic;
    margin-top: 24px;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    color: #2d3748;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2c5aa0;
    transform: translateY(-2px);
}

.final-cta-split {
    display: flex;
    background-color: #2b6cb0;
    color: #ffffff;
}

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

.cta-left {
    flex-direction: column;
    align-items: flex-start;
}

.cta-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-left p {
    font-size: 18px;
    line-height: 1.6;
}

.cta-right {
    justify-content: center;
}

.cta-large {
    display: inline-block;
    padding: 20px 40px;
    background-color: #ffffff;
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 60px 60px 30px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-col h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #718096;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
    background-color: #f7fafc;
}

.page-hero-split .hero-left {
    padding: 60px 80px 60px 120px;
}

.page-hero-split h1 {
    font-size: 44px;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero-split p {
    font-size: 18px;
    color: #4a5568;
}

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

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-image,
.service-content {
    flex: 1;
}

.service-image {
    background-color: #edf2f7;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-content h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 16px;
}

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

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

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    font-size: 16px;
    color: #4a5568;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
    font-size: 18px;
}

.service-cta {
    display: inline-block;
    padding: 14px 28px;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: #2c5aa0;
    transform: translateY(-2px);
}

.pricing-note-section {
    background-color: #f7fafc;
    padding: 60px;
}

.pricing-note {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-note h2 {
    font-size: 28px;
    color: #1a202c;
    margin-bottom: 20px;
}

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

.cta-section {
    background-color: #2d3748;
    padding: 80px 60px;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-content p {
    font-size: 18px;
    color: #cbd5e0;
    margin-bottom: 32px;
}

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

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-left h2,
.contact-right h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 32px;
}

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

.contact-item h3 {
    font-size: 18px;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 12px;
}

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

.contact-note {
    font-size: 14px;
    color: #718096;
    font-style: italic;
    margin-top: 8px;
}

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

.contact-info-box {
    background-color: #f7fafc;
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.contact-info-box h3 {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 12px;
}

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

.map-section {
    padding: 0;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background-color: #e2e8f0;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-section {
    padding: 120px 60px;
    background-color: #f7fafc;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 44px;
    color: #1a202c;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
}

.thanks-info {
    background-color: #e6fffa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #38b2ac;
}

.thanks-info p {
    font-size: 17px;
    color: #234e52;
    margin: 0;
}

.thanks-next {
    text-align: left;
    margin: 40px 0;
}

.thanks-next h2 {
    font-size: 28px;
    color: #1a202c;
    margin-bottom: 20px;
}

.thanks-steps {
    list-style: none;
    padding-left: 0;
}

.thanks-steps li {
    font-size: 16px;
    color: #4a5568;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
}

.thanks-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.legal-page {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 40px;
    color: #1a202c;
    margin-bottom: 12px;
}

.legal-update {
    font-size: 14px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #1a202c;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: #2d3748;
    margin-top: 32px;
    margin-bottom: 16px;
}

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

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 24px;
}

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

.legal-content a {
    color: #2b6cb0;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.gdpr-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.gdpr-table thead,
.cookie-table thead {
    background-color: #f7fafc;
}

.gdpr-table th,
.cookie-table th {
    padding: 12px;
    text-align: left;
    font-size: 15px;
    color: #2d3748;
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
}

.gdpr-table td,
.cookie-table td {
    padding: 12px;
    font-size: 15px;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.approach-section {
    background-color: #f7fafc;
    padding: 80px 60px;
}

.approach-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-section h2 {
    font-size: 36px;
    color: #1a202c;
    text-align: center;
    margin-bottom: 60px;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.approach-card h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 16px;
}

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

.values-split {
    display: flex;
    padding: 80px 60px;
    background-color: #edf2f7;
    gap: 80px;
}

.values-left,
.values-right {
    flex: 1;
}

.values-left h2 {
    font-size: 36px;
    color: #1a202c;
    line-height: 1.3;
}

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

.value-item h3 {
    font-size: 24px;
    color: #1a202c;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-split,
    .content-split,
    .testimonial-split,
    .form-split,
    .final-cta-split,
    .contact-split,
    .values-split,
    .service-card,
    .page-hero-split {
        flex-direction: column;
    }

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

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

    .hero-split h1,
    .page-hero-split h1 {
        font-size: 36px;
    }

    .split-content h2 {
        font-size: 28px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .header-split {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

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

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

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

    .service-card.reverse {
        flex-direction: column;
    }
}