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

:root {
    --primary-color: #00C896;
    --primary-dark: #00A378;
    --secondary-color: #1A1A2E;
    --text-dark: #16213E;
    --text-light: #5A5A6E;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --accent-orange: #FF6B35;
    --accent-blue: #0F4C81;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-right a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover,
.nav-right a.active {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 3rem 5%;
    gap: 4rem;
}

.hero-left {
    flex: 1;
    padding-right: 2rem;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,200,150,0.3);
}

.btn-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

.trust-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    gap: 4rem;
    background: var(--bg-light);
}

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

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.split-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.benefit-list {
    margin-top: 2rem;
}

.benefit-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.05rem;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.insight-section {
    padding: 5rem 5%;
    background: var(--secondary-color);
    color: var(--bg-white);
}

.insight-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

.insight-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.insight-card {
    flex: 1;
    background: rgba(255,255,255,0.08);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.insight-card p {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

.services-preview-split {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: var(--bg-white);
}

.service-cards {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    flex: 1;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.service-card.featured {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-dark);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-card.featured h3 {
    color: var(--bg-white);
}

.service-card p {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.service-card.featured p {
    color: rgba(255,255,255,0.9);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.service-card.featured .price {
    color: var(--bg-white);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--bg-white);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.select-service,
.btn-service,
.btn-addon {
    width: 100%;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.9rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.select-service:hover,
.btn-service:hover,
.btn-addon:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

.service-card.featured .select-service {
    background: var(--bg-white);
    color: var(--primary-color);
}

.service-card.featured .select-service:hover {
    background: var(--bg-light);
}

.additional-services {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.addon {
    flex: 1;
    background: var(--bg-white);
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
}

.addon h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.testimonials-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background: var(--bg-light);
}

.testimonial {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.author {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

.how-it-works {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.how-it-works h2 {
    font-size: 2.8rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 4rem;
}

.steps-container {
    display: flex;
    gap: 2.5rem;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.step p {
    color: var(--text-light);
    line-height: 1.7;
}

.urgency-split {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    background: var(--accent-blue);
    color: var(--bg-white);
    align-items: center;
}

.urgency-split .split-content h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.urgency-split .split-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
}

.split-form {
    flex: 1;
}

.main-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.main-form h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.main-form input,
.main-form select,
.main-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.main-form input:focus,
.main-form select:focus,
.main-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.main-form textarea {
    min-height: 100px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.final-push {
    padding: 5rem 5%;
    background: var(--secondary-color);
    text-align: center;
    color: var(--bg-white);
}

.push-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.push-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.85);
}

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.sticky-btn {
    background: var(--accent-orange);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255,107,53,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background: var(--primary-dark);
}

.btn-reject {
    background: transparent;
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
}

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

.page-hero-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    gap: 4rem;
    background: var(--bg-light);
}

.page-hero-split h1 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

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

.values-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    gap: 2.5rem;
}

.value-card {
    flex: 1;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.story-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.team-section {
    padding: 5rem 5%;
    background: var(--secondary-color);
    color: var(--bg-white);
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.team-intro {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 3rem;
}

.stat h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: rgba(255,255,255,0.7);
}

.cta-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background: var(--bg-light);
    align-items: center;
}

.services-detailed {
    padding: 5rem 5%;
}

.services-detailed h2 {
    font-size: 2.8rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 4rem;
}

.service-detail-split {
    display: flex;
    padding: 4rem 0;
    gap: 4rem;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

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

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-desc {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.feature-list {
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.ideal-for {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-dark);
}

.badge-popular {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--bg-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.btn-service.featured {
    background: var(--primary-color);
}

.addon-services {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.addon-services h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.addon-grid {
    display: flex;
    gap: 2.5rem;
}

.addon-card {
    flex: 1;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.addon-card h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.addon-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.addon-card ul {
    margin: 1.5rem 0;
}

.addon-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.addon-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.comparison-section {
    padding: 5rem 5%;
}

.comparison-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.comparison-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

thead {
    background: var(--secondary-color);
    color: var(--bg-white);
}

th,
td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    font-weight: 600;
}

tbody tr:hover {
    background: var(--bg-light);
}

.faq-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background: var(--bg-light);
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.final-cta-services {
    padding: 5rem 5%;
    background: var(--primary-color);
    text-align: center;
    color: var(--bg-white);
}

.final-cta-services h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.final-cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.contact-info-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.note {
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.directions-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.directions-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.directions-content {
    display: flex;
    gap: 3rem;
}

.direction-block {
    flex: 1;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
}

.direction-block h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.direction-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.cta-contact {
    padding: 5rem 5%;
    background: var(--secondary-color);
    text-align: center;
    color: var(--bg-white);
}

.cta-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-contact p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.85);
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.thanks-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.thanks-details {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    color: var(--text-dark);
}

.next-steps {
    margin: 4rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.step-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.5;
    min-width: 60px;
}

.step-text h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.step-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-cta {
    margin-top: 4rem;
}

.thanks-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.legal-page {
    padding: 5rem 5%;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 2.5rem 0 1.5rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.legal-container p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-container ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-container li {
    list-style: disc;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .trust-split,
    .services-preview-split,
    .testimonials-split,
    .urgency-split,
    .page-hero-split,
    .mission-split,
    .story-split,
    .cta-split,
    .service-detail-split,
    .faq-split,
    .contact-info-split {
        flex-direction: column;
    }

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

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .insight-grid,
    .service-cards,
    .additional-services,
    .steps-container,
    .values-grid,
    .team-stats,
    .addon-grid,
    .directions-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-right a:not(.nav-cta) {
        display: none;
    }

    .hero-split {
        padding: 2rem 5%;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .split-content h2 {
        font-size: 2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    table {
        font-size: 0.9rem;
    }

    th,
    td {
        padding: 1rem;
    }
}
