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

:root {
    --primary-color: #2c5282;
    --secondary-color: #4a90c7;
    --accent-color: #e67e22;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

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

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

.hero-split {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 60px;
    min-height: 600px;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.hero-left p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #1e3a5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 82, 130, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.features-split {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 60px;
    background: var(--bg-light);
}

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

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

.features-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.features-right h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.feature-item {
    margin-bottom: 30px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.services-intro {
    padding: 80px 5%;
    text-align: center;
    background: var(--bg-white);
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.service-split {
    display: flex;
    align-items: stretch;
    padding: 60px 5%;
    gap: 50px;
    border-bottom: 1px solid var(--border-color);
}

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

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

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 25px 0;
}

.select-service {
    background: var(--accent-color);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background: #d35400;
    transform: translateY(-2px);
}

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

.testimonials-left {
    flex: 1;
}

.testimonials-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonials-left p {
    font-size: 18px;
    color: var(--text-light);
}

.testimonials-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.form-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background: var(--bg-white);
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-right {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.selected-service-display {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-color);
    display: none;
}

.selected-service-display.active {
    display: block;
}

.trust-split {
    padding: 80px 5%;
    background: var(--primary-color);
    color: white;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.trust-item {
    text-align: center;
    flex: 1;
}

.trust-item h4 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.trust-item p {
    font-size: 16px;
    opacity: 0.9;
}

.final-cta-split {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 60px;
    background: var(--bg-light);
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-left p {
    font-size: 18px;
    color: var(--text-light);
}

.cta-right {
    flex: 1;
    text-align: center;
}

.cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 20px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

.cta-note {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.footer-split {
    background: var(--text-dark);
    color: white;
    padding: 60px 5% 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col a:hover {
    color: white;
}

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

.disclaimer {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 55, 72, 0.98);
    padding: 25px 5%;
    z-index: 1000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-banner.active {
    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: white;
    font-size: 15px;
    flex: 1;
}

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

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

.cookie-accept {
    background: var(--success-color);
    color: white;
}

.cookie-accept:hover {
    background: #38a169;
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-hero-split {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 60px;
    background: var(--bg-light);
    min-height: 400px;
}

.page-hero-split .hero-left h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero-split .hero-left p {
    font-size: 20px;
    color: var(--text-light);
}

.story-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.story-left {
    flex: 1;
}

.story-left h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.story-left p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-right {
    flex: 1;
}

.story-right img {
    width: 100%;
    border-radius: 8px;
}

.values-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background: var(--bg-light);
    align-items: center;
}

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

.values-left {
    flex: 1;
}

.values-left img {
    width: 100%;
    border-radius: 8px;
}

.values-right {
    flex: 1;
}

.values-right h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: var(--text-dark);
}

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

.value-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
    font-size: 16px;
}

.team-split {
    padding: 80px 5%;
    background: var(--bg-white);
}

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

.team-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.team-header p {
    font-size: 18px;
    color: var(--text-light);
}

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

.team-member-card {
    flex: 0 0 300px;
    text-align: center;
}

.team-member-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-member-card > p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.approach-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background: var(--bg-light);
    align-items: center;
}

.approach-left {
    flex: 1;
}

.approach-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.approach-left > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.step-item p {
    font-size: 15px;
    color: var(--text-light);
}

.approach-right {
    flex: 1;
}

.approach-right img {
    width: 100%;
    border-radius: 8px;
}

.cta-about {
    padding: 80px 5%;
    text-align: center;
    background: var(--primary-color);
    color: white;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
}

.service-detail-split {
    display: flex;
    padding: 60px 5%;
    gap: 50px;
    align-items: stretch;
    border-bottom: 1px solid var(--border-color);
}

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

.service-detail-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-right {
    flex: 1;
}

.service-detail-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-left p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-includes {
    margin: 30px 0;
}

.service-includes h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-light);
    font-size: 16px;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.price-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.select-service-btn {
    background: var(--accent-color);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.service-detail-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.process-overview {
    padding: 80px 5%;
    background: var(--bg-light);
}

.process-overview h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.process-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.process-step {
    flex: 1;
    text-align: center;
    background: white;
    padding: 35px 25px;
    border-radius: 8px;
}

.process-number {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 15px;
    color: var(--text-light);
}

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

.services-cta h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

.contact-info-left {
    flex: 1;
}

.contact-info-left h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-detail p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    color: var(--text-dark);
    font-size: 15px;
}

.contact-map-right {
    flex: 1;
}

.contact-map-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.visit-section {
    padding: 80px 5%;
    background: var(--bg-light);
    text-align: center;
}

.visit-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.visit-section p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.faq-contact {
    padding: 80px 5%;
}

.faq-contact h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

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

.faq-item {
    flex: 0 0 calc(50% - 20px);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.thanks-content {
    flex: 2;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.step-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    gap: 25px;
}

.timeline-number {
    background: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.thanks-sidebar {
    flex: 1;
}

.contact-box,
.resource-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.contact-box h3,
.resource-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-box p,
.resource-box p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

.contact-hours {
    font-size: 14px;
}

.resource-box a {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 10px;
    font-weight: 600;
}

.resource-box a:hover {
    text-decoration: underline;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.last-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

.cookie-settings-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cookie-settings-btn:hover {
    background: #1e3a5f;
}

@media (max-width: 968px) {
    .hero-split,
    .features-split,
    .service-split,
    .testimonials-split,
    .form-split,
    .final-cta-split,
    .story-split,
    .values-split,
    .approach-split,
    .service-detail-split,
    .contact-split,
    .thanks-split {
        flex-direction: column;
    }

    .features-split.reverse,
    .service-split.reverse,
    .values-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

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

    .trust-grid,
    .team-grid,
    .process-grid {
        flex-direction: column;
    }

    .nav-right {
        gap: 15px;
    }

    .nav-right a {
        font-size: 14px;
    }

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

    .faq-item {
        flex: 0 0 100%;
    }

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

@media (max-width: 640px) {
    .hero-split,
    .features-split,
    .service-split,
    .form-split,
    .final-cta-split {
        padding: 50px 5%;
    }

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

    .hero-left p {
        font-size: 17px;
    }

    .nav-split {
        padding: 15px 5%;
    }

    .nav-left .logo {
        font-size: 20px;
    }
}