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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 33px;
    z-index: 99;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-right a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background: #bdc3c7;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.intro-split {
    display: flex;
    min-height: 70vh;
}

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

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #ffffff;
}

.intro-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.intro-image {
    flex: 1;
    background: #e1e8ed;
}

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

.services-preview {
    padding: 90px 60px;
    background: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 450px;
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 40%;
    object-fit: cover;
    background: #bdc3c7;
}

.service-content {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-content .price {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.btn-service {
    padding: 12px 24px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-service:hover {
    background: #5568d3;
    transform: scale(1.02);
}

.form-section {
    padding: 90px 60px;
    background: #ffffff;
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
}

.form-container {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.service-display {
    background: #e8edfa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.service-display p {
    margin: 0;
    font-size: 15px;
    color: #2c3e50;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.form-note {
    margin-top: 15px;
    font-size: 14px;
    color: #718096;
    text-align: center;
}

.testimonials-split {
    display: flex;
    background: #2c3e50;
    color: #ffffff;
}

.testimonial-content {
    flex: 1;
    padding: 80px 60px;
}

.testimonial-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
}

.testimonial-item {
    margin-bottom: 35px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.8;
}

.testimonial-image {
    flex: 1;
    background: #34495e;
}

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

.disclaimer-section {
    padding: 60px 60px;
    background: #fef5e7;
}

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.7;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

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

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

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

.footer-col a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
}

.footer-bottom p {
    font-size: 14px;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-cookie-accept {
    background: #667eea;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #5568d3;
    transform: scale(1.05);
}

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

.btn-cookie-reject:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.page-header-split {
    display: flex;
    min-height: 60vh;
    background: #f8f9fa;
}

.header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #667eea;
    color: #ffffff;
}

.header-content h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.header-image {
    flex: 1;
    background: #bdc3c7;
}

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

.about-mission-split {
    display: flex;
    min-height: 65vh;
}

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

.mission-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
    background: #ffffff;
}

.mission-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.mission-image {
    flex: 1;
    background: #e1e8ed;
}

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

.about-approach-split {
    display: flex;
    min-height: 70vh;
    background: #f8f9fa;
}

.approach-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
}

.approach-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.approach-list {
    list-style: none;
    margin-top: 25px;
}

.approach-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.approach-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 18px;
}

.approach-image {
    flex: 1;
    background: #e1e8ed;
}

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

.about-values {
    padding: 90px 60px;
    background: #ffffff;
}

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

.values-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 400px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #667eea;
}

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

.about-experience-split {
    display: flex;
    min-height: 65vh;
}

.about-experience-split.reverse {
    flex-direction: row-reverse;
}

.experience-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
    background: #2c3e50;
    color: #ffffff;
}

.experience-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.experience-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.experience-image {
    flex: 1;
    background: #34495e;
}

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

.cta-section-centered {
    padding: 90px 60px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.cta-section-centered h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section-centered p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-section-centered .cta-primary {
    background: #ffffff;
    color: #667eea;
}

.page-header-centered {
    padding: 100px 60px 60px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.page-header-centered h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header-centered p {
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.services-detailed {
    background: #f8f9fa;
    padding: 60px 0;
}

.service-detail-split {
    display: flex;
    margin-bottom: 60px;
    background: #ffffff;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.service-detail-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    background: #bdc3c7;
}

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

.price-box {
    background: #f0f4ff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    margin: 30px 0;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
}

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

.btn-select-service {
    display: inline-block;
    padding: 14px 32px;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
}

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

.pricing-notes {
    padding: 60px;
    background: #2c3e50;
    color: #ffffff;
}

.pricing-notes-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.pricing-notes-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.pricing-notes-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    opacity: 0.95;
}

.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info {
    flex: 1;
    padding: 70px 60px;
    background: #ffffff;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #667eea;
}

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

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

.contact-map {
    flex: 1;
    background: #bdc3c7;
}

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

.contact-approach {
    padding: 80px 60px;
    background: #f8f9fa;
}

.approach-content-center {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.approach-content-center h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.approach-content-center p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 50px;
}

.approach-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.step-item {
    flex: 1;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 15px;
}

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

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

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.thanks-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
}

.thanks-service {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.service-confirmation {
    font-size: 17px;
    margin: 0;
}

.thanks-info {
    font-size: 16px;
    line-height: 1.7;
    margin: 30px 0;
    opacity: 0.9;
}

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

.btn-primary {
    padding: 14px 32px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    transition: background 0.3s, transform 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.next-steps {
    padding: 80px 60px;
    background: #f8f9fa;
}

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

.next-steps-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.steps-timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

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

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

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 25px 0 15px;
    color: #667eea;
}

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

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

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

.legal-content a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: #5568d3;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

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

.cookies-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

.cookies-table td {
    font-size: 15px;
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .about-mission-split,
    .about-approach-split,
    .about-experience-split,
    .contact-split,
    .testimonials-split,
    .page-header-split,
    .service-detail-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .about-mission-split.reverse,
    .about-experience-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
        min-width: 100%;
    }

    .service-card img {
        width: 100%;
        height: 250px;
    }

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

    .approach-steps {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-item {
        min-width: 100%;
    }

    .nav-split {
        flex-direction: column;
        gap: 20px;
    }

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

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