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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

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

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.hero-right {
    flex: 1;
}

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

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

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

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

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

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

.intro-left {
    flex: 1;
}

.intro-left img {
    width: 100%;
    border-radius: 12px;
}

.intro-right {
    flex: 1;
}

.intro-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-right p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
}

.values-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.value-card {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

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

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

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

.services-header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.services-header-left h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.services-header-left p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.service-item-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    border-radius: 12px;
}

.cta-inline-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.cta-inline-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-inline-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-inline-content .cta-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-inline-content .cta-primary:hover {
    background-color: var(--bg-light);
}

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

.testimonials-section h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.testimonials-split {
    display: flex;
    gap: 3rem;
}

.testimonial-card {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.form-section-split {
    display: flex;
    padding: 6rem 5%;
    gap: 5rem;
    background-color: var(--bg-light);
}

.form-left {
    flex: 1;
}

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

.form-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

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

.btn-submit:hover {
    background-color: var(--secondary-color);
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1.5rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

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

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

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

.sticky-cta-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem 5%;
    z-index: 200;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: var(--primary-color);
}

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

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

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

.btn-cookie:hover {
    background-color: var(--secondary-color);
}

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

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

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

.page-hero-content {
    flex: 1;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.page-hero-image {
    flex: 1;
}

.page-hero-image img {
    width: 100%;
    border-radius: 12px;
}

.story-section {
    padding: 6rem 5%;
}

.story-split {
    display: flex;
    gap: 5rem;
}

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

.story-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-left p,
.story-right p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.values-detail-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.values-split-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.value-item-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.value-image {
    flex: 1;
}

.value-image img {
    width: 100%;
    border-radius: 12px;
}

.value-text {
    flex: 1;
}

.value-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.value-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.team-section {
    padding: 6rem 5%;
}

.team-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.team-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-member img {
    width: 100%;
    max-width: 250px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.clients-section {
    padding: 6rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.clients-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.clients-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.clients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.client-item {
    padding: 1rem 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.cta-about-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-about-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-about-content .cta-primary {
    background-color: white;
    color: var(--primary-color);
}

.page-hero-services {
    padding: 5rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero-services h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.services-hero-text {
    font-size: 1.3rem;
    color: var(--text-light);
}

.services-detail-section {
    padding: 4rem 5%;
}

.service-detail-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

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

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

.service-detail-left img {
    width: 100%;
    border-radius: 12px;
}

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

.service-detail-right h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

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

.service-detail-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail-right h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
}

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

.cta-service {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.process-section {
    padding: 6rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.process-section h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

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

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

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.faq-section {
    padding: 6rem 5%;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.faq-split {
    display: flex;
    gap: 4rem;
}

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

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

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

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

.cta-services-bottom {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.cta-bottom-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-bottom-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-bottom-content .cta-primary {
    background-color: white;
    color: var(--primary-color);
}

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

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.contact-main-split {
    display: flex;
    gap: 5rem;
    padding: 6rem 5%;
    align-items: stretch;
}

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

.contact-info-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.contact-block a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 0.6rem 1.2rem;
    background-color: var(--bg-light);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
}

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

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

.contact-info-section {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.contact-info-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.contact-process {
    display: flex;
    gap: 3rem;
}

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

.contact-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.contact-cta-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

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

.contact-cta-content .cta-primary {
    background-color: white;
    color: var(--primary-color);
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-info {
    margin: 3rem 0;
    padding: 3rem;
    background-color: var(--bg-white);
    border-radius: 12px;
}

.thanks-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.thanks-step {
    flex: 1;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.selected-service-box {
    display: none;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.selected-service-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.thanks-additional {
    padding: 6rem 5%;
}

.thanks-additional h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.thanks-links {
    display: flex;
    gap: 3rem;
}

.thanks-link-card {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.thanks-link-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.thanks-link-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.thanks-link-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.thanks-link-card a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.legal-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

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

.legal-content strong {
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .services-header-split,
    .service-item-split,
    .form-section-split,
    .story-split,
    .value-item-split,
    .service-detail-item,
    .faq-split,
    .contact-main-split {
        flex-direction: column;
    }

    .service-item-split.reverse,
    .intro-split.reverse,
    .value-item-split.reverse,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .values-grid,
    .testimonials-split,
    .team-grid,
    .process-steps,
    .thanks-steps,
    .contact-process,
    .thanks-links {
        flex-direction: column;
    }

    .header-right {
        gap: 1rem;
    }

    .hero-left h1,
    .page-hero-content h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 2.5rem;
    }
}

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

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

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

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