* {
    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.7;
    color: #333;
    background-color: #fff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #555;
    max-width: 550px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.split-alternate {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.split-content-right {
    flex: 1;
    padding: 70px 60px;
}

.split-content-right h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-content-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.split-image-left {
    flex: 1;
    overflow: hidden;
}

.split-image-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

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

.split-content-left {
    flex: 1;
    padding: 70px 60px;
}

.split-content-left h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-image-right {
    flex: 1;
    overflow: hidden;
}

.split-image-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

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

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

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    min-width: 60px;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-text p {
    font-size: 16px;
    color: #666;
}

.services-preview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    background-color: #fafbfc;
}

.services-preview h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.services-split-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-box {
    flex: 1;
    min-width: 320px;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.service-box h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.service-box p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #666;
    line-height: 1.7;
}

.price-tag {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: #2980b9;
}

.testimonials-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    padding: 60px;
    display: flex;
    align-items: center;
}

.testimonial-left {
    background-color: #ecf0f1;
}

.testimonial-right {
    background-color: #e8f4f8;
}

.testimonial-content {
    width: 100%;
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #555;
}

.cta-section-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    background-color: #2c3e50;
    color: #fff;
}

.cta-content-area {
    flex: 1;
    padding: 70px 60px;
}

.cta-content-area h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-content-area p {
    font-size: 18px;
    line-height: 1.7;
}

.cta-action-area {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background-color: #fff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #ecf0f1;
}

.form-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.form-wrapper-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.form-container {
    flex: 1;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.info-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    gap: 60px;
}

.info-block {
    flex: 1;
}

.info-block h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

.disclaimer-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px 60px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.disclaimer-text {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 60px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    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 {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie.accept {
    background-color: #27ae60;
    color: #fff;
}

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

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #fff;
}

.btn-cookie.reject:hover {
    background-color: #7f8c8d;
}

.page-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 400px;
    align-items: center;
}

.hero-text-left {
    flex: 1;
    padding: 70px 60px;
}

.hero-text-left h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-text-left p {
    font-size: 19px;
    color: #666;
    line-height: 1.7;
}

.hero-visual-right {
    flex: 1;
    overflow: hidden;
}

.hero-visual-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-content-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.content-left-side {
    flex: 1;
    padding: 70px 60px;
}

.content-left-side h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.content-left-side p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.content-right-side {
    flex: 1;
    overflow: hidden;
}

.content-right-side img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.values-split-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    background-color: #fafbfc;
}

.values-intro h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #fff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.team-image-left {
    flex: 1;
    overflow: hidden;
}

.team-image-left img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.team-text-right {
    flex: 1;
    padding: 70px 60px;
}

.team-text-right h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.team-text-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.stats-split-layout {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.stat-box {
    flex: 1;
    padding: 50px 30px;
    text-align: center;
    background-color: #ecf0f1;
    border-right: 1px solid #bdc3c7;
}

.stat-box:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

.stat-box p {
    font-size: 17px;
    color: #555;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.approach-content-left {
    flex: 1;
    padding: 70px 60px;
}

.approach-content-left h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.approach-image-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-about-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    background-color: #34495e;
    color: #fff;
}

.cta-text-side {
    flex: 1;
    padding: 70px 60px;
}

.cta-text-side h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-text-side p {
    font-size: 18px;
    line-height: 1.7;
}

.cta-button-side {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    justify-content: center;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    align-items: center;
}

.service-text-left {
    flex: 1;
    padding: 60px;
}

.service-text-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.service-text-left p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #666;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.service-price-box {
    background-color: #e8f4f8;
    padding: 25px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 18px;
    color: #555;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
}

.service-image-right {
    flex: 1;
    overflow: hidden;
}

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

.service-text-right {
    flex: 1;
    padding: 60px;
}

.service-text-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.service-text-right p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.service-image-left {
    flex: 1;
    overflow: hidden;
}

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

.cta-services-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    align-items: center;
    background-color: #2c3e50;
    color: #fff;
}

.cta-content-side {
    flex: 1;
    padding: 70px 60px;
}

.cta-content-side h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-content-side p {
    font-size: 18px;
    line-height: 1.7;
}

.cta-action-side {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    justify-content: center;
}

.contact-info-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.contact-block-left {
    flex: 1;
    padding: 70px 60px;
}

.contact-block-left h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3498db;
}

.contact-detail p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.contact-block-right {
    flex: 1;
    overflow: hidden;
}

.contact-block-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.contact-additional-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    gap: 80px;
    background-color: #fafbfc;
}

.additional-info-left,
.additional-info-right {
    flex: 1;
}

.additional-info-left h2,
.additional-info-right h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.additional-info-left p,
.additional-info-right p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.language-list {
    list-style: none;
    padding-left: 20px;
}

.language-list li {
    padding: 8px 0;
    font-size: 17px;
    color: #555;
    position: relative;
}

.language-list li:before {
    content: "•";
    position: absolute;
    left: -20px;
    color: #3498db;
    font-size: 20px;
}

.contact-faq-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.faq-intro h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.faq-item {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.cta-contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    background-color: #34495e;
    color: #fff;
}

.cta-text-area {
    flex: 1;
    padding: 70px 60px;
}

.cta-text-area h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-text-area p {
    font-size: 18px;
    line-height: 1.7;
}

.cta-button-area {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    justify-content: center;
}

.thanks-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
    align-items: center;
}

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

.thanks-content-left h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-content-left p {
    font-size: 19px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.7;
}

.thanks-info-box {
    background-color: #e8f8f5;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.thanks-info-box h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.thanks-info-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-visual-right {
    flex: 1;
    overflow: hidden;
}

.thanks-visual-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.thanks-next-steps-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    gap: 40px;
    background-color: #fafbfc;
}

.next-step-card {
    flex: 1;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.next-step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.next-step-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.thanks-cta-split {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 60px;
}

.thanks-cta-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.link-button {
    display: inline-block;
    padding: 16px 35px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.link-button:hover {
    background-color: #2980b9;
}

.legal-page-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
}

.legal-sidebar {
    width: 280px;
    padding: 60px 30px;
    background-color: #f8f9fa;
}

.legal-sidebar h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.legal-nav {
    list-style: none;
}

.legal-nav li {
    margin-bottom: 12px;
}

.legal-nav a {
    display: block;
    padding: 10px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.legal-nav a:hover,
.legal-nav a.active {
    background-color: #3498db;
    color: #fff;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-alternate,
    .page-hero-split,
    .about-content-split,
    .team-split,
    .approach-split,
    .service-detail-split,
    .contact-info-split,
    .thanks-hero-split,
    .cta-section-split,
    .cta-about-split,
    .cta-services-split,
    .cta-contact-split {
        flex-direction: column;
    }

    .split-alternate.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-content-right,
    .split-content-left,
    .split-image-left,
    .split-image-right,
    .hero-text-left,
    .hero-visual-right,
    .content-left-side,
    .content-right-side,
    .team-image-left,
    .team-text-right,
    .approach-content-left,
    .approach-image-right,
    .service-text-left,
    .service-text-right,
    .service-image-left,
    .service-image-right,
    .contact-block-left,
    .contact-block-right,
    .thanks-content-left,
    .thanks-visual-right,
    .cta-content-area,
    .cta-action-area,
    .cta-text-side,
    .cta-button-side,
    .cta-content-side,
    .cta-action-side,
    .cta-text-area,
    .cta-button-area {
        width: 100%;
    }

    .hero-right img,
    .split-image-left img,
    .split-image-right img,
    .hero-visual-right img,
    .content-right-side img,
    .team-image-left img,
    .approach-image-right img,
    .service-image-right img,
    .service-image-left img,
    .contact-block-right img,
    .thanks-visual-right img {
        height: 400px;
    }

    .legal-page-split {
        flex-direction: column;
    }

    .legal-sidebar {
        width: 100%;
    }

    .stats-split-layout {
        flex-wrap: wrap;
    }

    .stat-box {
        min-width: 50%;
        border-right: none;
        border-bottom: 1px solid #bdc3c7;
    }

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

    .form-wrapper-split,
    .contact-additional-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero-left h1,
    .thanks-content-left h1 {
        font-size: 36px;
    }

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

    .split-content-right h2,
    .split-content-left h2,
    .content-left-side h2,
    .team-text-right h2,
    .approach-content-left h2,
    .contact-block-left h2 {
        font-size: 32px;
    }

    .services-preview h2,
    .values-intro h2,
    .faq-intro h2,
    .legal-content h1 {
        font-size: 32px;
    }

    .service-text-left h2,
    .service-text-right h2 {
        font-size: 28px;
    }

    .features-grid,
    .services-split-layout,
    .values-grid,
    .faq-grid,
    .thanks-next-steps-split {
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .info-split {
        flex-direction: column;
        gap: 30px;
    }
}