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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.6rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    background-color: #f9f9f9;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #0066cc;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #e5e5e5;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #0066cc;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
}

.intro-split {
    display: flex;
}

.intro-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: #e5e5e5;
}

.intro-text {
    flex: 1;
    padding: 5rem 5%;
    background-color: #ffffff;
}

.intro-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 1.2rem;
}

.problem-amplification {
    padding: 5rem 5%;
    background-color: #f0f2f5;
}

.amplification-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.split-container {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.problem-block {
    flex: 1;
}

.problem-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.problem-block p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
}

.problem-visual {
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #d5d5d5;
}

.insight-section {
    display: flex;
    min-height: 550px;
}

.insight-left {
    flex: 1;
    padding: 5rem 5%;
    background-color: #1a1a1a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.insight-left p {
    font-size: 1.15rem;
    color: #d0d0d0;
    margin-bottom: 1.2rem;
}

.insight-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #2a2a2a;
}

.trust-building {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.trust-building h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.trust-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    flex: 1;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.trust-card p {
    font-size: 1rem;
    color: #555;
}

.testimonials-inline {
    background-color: #f0f2f5;
}

.testimonial-split {
    display: flex;
    min-height: 400px;
}

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

.testimonial-content {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.testimonial-content blockquote {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1rem;
    color: #666;
    font-style: normal;
}

.testimonial-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #d5d5d5;
}

.benefits-reveal {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.benefits-reveal h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #444;
}

.services-showcase {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.services-showcase h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #0052a3;
}

.form-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.selected-service-info {
    padding: 1.5rem;
    background-color: #f0f7ff;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
    margin-top: 2rem;
}

.selected-service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.selected-service-info p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-right {
    flex: 1;
}

.booking-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #0052a3;
}

.final-cta {
    padding: 5rem 5%;
    background-color: #1a1a1a;
    text-align: center;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.final-cta p {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
}

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #f8f9fa;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    max-width: 1200px;
    margin: 0 auto;
    text-align: justify;
}

.footer-split {
    display: flex;
    padding: 4rem 5%;
    background-color: #2a2a2a;
    color: #d0d0d0;
    gap: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #d0d0d0;
}

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

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

.btn-cookie-accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

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

.btn-cookie-reject:hover {
    background-color: #333;
    color: #ffffff;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

.page-hero-content {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #555;
}

.page-hero-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #e5e5e5;
}

.about-split {
    display: flex;
}

.about-text {
    flex: 1;
    padding: 5rem 5%;
    background-color: #ffffff;
}

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 1.2rem;
}

.about-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: #e5e5e5;
}

.methodology-section {
    padding: 5rem 5%;
    background-color: #f0f2f5;
}

.methodology-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.methodology-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.method-block {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 6px;
}

.method-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.method-block p {
    font-size: 1rem;
    color: #555;
}

.philosophy-split {
    display: flex;
}

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

.philosophy-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: #e5e5e5;
}

.philosophy-text {
    flex: 1;
    padding: 5rem 5%;
    background-color: #ffffff;
}

.philosophy-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.philosophy-text p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 1.2rem;
}

.team-approach {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.team-approach h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-values {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 6px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1rem;
    color: #555;
}

.technology-stack {
    background-color: #ffffff;
}

.tech-split {
    display: flex;
}

.tech-content {
    flex: 1;
    padding: 5rem 5%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.tech-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.tech-content p {
    font-size: 1.15rem;
    color: #d0d0d0;
    margin-bottom: 1.2rem;
}

.tech-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: #2a2a2a;
}

.services-page-hero {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-page-hero p {
    font-size: 1.25rem;
    color: #555;
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail-block {
    padding: 4rem 5%;
}

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

.service-detail-split {
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

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

.service-detail-info h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-info p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
}

.service-includes {
    margin: 2rem 0;
}

.service-includes h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.service-includes ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.service-includes ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
}

.service-detail-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 450px;
    border-radius: 8px;
    background-color: #e5e5e5;
}

.services-cta {
    padding: 5rem 5%;
    background-color: #f0f2f5;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-cta p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.contact-page-hero {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-page-hero p {
    font-size: 1.25rem;
    color: #555;
}

.contact-info-layout {
    background-color: #ffffff;
}

.contact-split {
    display: flex;
}

.contact-details {
    flex: 1;
    padding: 5rem 5%;
    background-color: #ffffff;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-details p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

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

.contact-method h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.contact-method p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.3rem;
}

.contact-email {
    color: #0066cc;
    font-weight: 600;
}

.contact-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    background-color: #e5e5e5;
}

.contact-faq {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.contact-faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
}

.contact-cta {
    padding: 4rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.thanks-page {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 3rem;
}

.service-confirmation {
    background-color: #f0f7ff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.service-confirmation h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    text-align: left;
}

.step-item {
    flex: 1;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 6px;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-item p {
    font-size: 1rem;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.legal-page {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-content strong {
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table thead {
    background-color: #f0f2f5;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    font-weight: 600;
    color: #1a1a1a;
}

.cookies-table td {
    color: #555;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-split,
    .intro-split,
    .split-container,
    .insight-section,
    .testimonial-split,
    .about-split,
    .philosophy-split,
    .tech-split,
    .contact-split,
    .service-detail-split,
    .form-container-split {
        flex-direction: column;
    }

    .hero-content h1,
    .page-hero-content h1,
    .thanks-content h1,
    .legal-content h1 {
        font-size: 2rem;
    }

    .trust-grid,
    .team-values,
    .methodology-grid,
    .steps-grid,
    .thanks-actions {
        flex-direction: column;
    }

    .service-grid .service-card,
    .benefit-item,
    .method-block,
    .faq-item {
        flex: 1 1 100%;
    }

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

    .footer-split {
        flex-direction: column;
    }
}
