* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    display: block;
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-asymmetric {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.brand-block {
    flex: 0 0 auto;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a4d7d;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #1a4d7d;
}

.ad-disclosure {
    background: #fff3cd;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    color: #856404;
    font-weight: 600;
}

.hero-offset {
    max-width: 1400px;
    margin: 60px auto 80px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-content-left {
    flex: 0 0 48%;
    padding-right: 40px;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.1;
    color: #1a4d7d;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: #1a4d7d;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #134060;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 77, 125, 0.3);
}

.hero-image-right {
    flex: 0 0 48%;
    position: relative;
    margin-top: -40px;
    background-color: #e3f2fd;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-diagonal {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
    padding: 80px 40px;
    margin: 80px 0;
    transform: skewY(-2deg);
}

.intro-wrap {
    max-width: 1200px;
    margin: 0 auto;
    transform: skewY(2deg);
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text-offset {
    flex: 1;
    padding-right: 40px;
}

.intro-text-offset h2 {
    font-size: 36px;
    color: #1a4d7d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-text-offset p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
}

.intro-stat-card {
    flex: 0 0 280px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: #27ae60;
    display: block;
    margin-bottom: 12px;
}

.intro-stat-card p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.5;
}

.problem-overlap {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
}

.problem-image-bg {
    flex: 0 0 45%;
    background-color: #b3e5fc;
    border-radius: 8px;
    overflow: hidden;
}

.problem-image-bg img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.problem-text-float {
    flex: 1;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-left: -80px;
    z-index: 10;
}

.problem-text-float h2 {
    font-size: 34px;
    color: #1a4d7d;
    margin-bottom: 28px;
    line-height: 1.3;
}

.challenge-list {
    list-style: none;
}

.challenge-list li {
    padding: 16px 0 16px 40px;
    font-size: 17px;
    color: #546e7a;
    position: relative;
    line-height: 1.6;
}

.challenge-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 24px;
    font-weight: 700;
}

.services-stagger {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.services-header-offset {
    max-width: 700px;
    margin-bottom: 60px;
    margin-left: 80px;
}

.services-header-offset h2 {
    font-size: 42px;
    color: #1a4d7d;
    margin-bottom: 16px;
    line-height: 1.2;
}

.services-header-offset p {
    font-size: 19px;
    color: #546e7a;
    line-height: 1.6;
}

.services-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.service-card-1 {
    margin-left: 0;
}

.service-card-2 {
    margin-left: 120px;
    flex-direction: row-reverse;
}

.service-card-3 {
    margin-left: 60px;
}

.service-card-4 {
    margin-left: 180px;
    flex-direction: row-reverse;
}

.service-card-5 {
    margin-left: 40px;
}

.service-image {
    flex: 0 0 45%;
    background-color: #e0f2f1;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 320px;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    flex: 1;
    padding: 40px;
}

.service-content h3 {
    font-size: 26px;
    color: #1a4d7d;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-content p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    background: #1a4d7d;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #134060;
    transform: translateX(4px);
}

.trust-scattered {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.trust-content-block {
    flex: 0 0 calc(50% - 30px);
    padding-right: 40px;
}

.trust-content-block h2 {
    font-size: 38px;
    color: #1a4d7d;
    margin-bottom: 24px;
    line-height: 1.3;
}

.trust-content-block p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
}

.trust-image-float {
    flex: 0 0 calc(50% - 30px);
    background-color: #fff3e0;
    border-radius: 8px;
    overflow: hidden;
    margin-top: -60px;
}

.trust-image-float img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.trust-stats-cluster {
    flex: 0 0 100%;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
    border-radius: 8px;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #1a4d7d;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 15px;
    color: #546e7a;
    font-weight: 600;
}

.testimonials-offset {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.testimonials-title {
    font-size: 40px;
    color: #1a4d7d;
    margin-bottom: 60px;
    text-align: center;
}

.testimonials-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #1a4d7d;
}

.testimonial-1 {
    margin-left: 0;
}

.testimonial-2 {
    margin-left: 100px;
}

.testimonial-3 {
    margin-left: 50px;
}

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

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: #1a4d7d;
    margin-bottom: 4px;
}

.testimonial-author span {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
}

.cta-angular {
    background: linear-gradient(120deg, #1a4d7d 0%, #2e7bb4 100%);
    padding: 80px 40px;
    margin: 100px 0;
    transform: skewY(-1.5deg);
}

.cta-content-wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    transform: skewY(1.5deg);
}

.cta-content-wrap h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content-wrap p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    background: #ffffff;
    color: #1a4d7d;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-section-irregular {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 120px;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-container-offset h2 {
    font-size: 36px;
    color: #1a4d7d;
    margin-bottom: 16px;
}

.form-intro {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 40px;
    line-height: 1.6;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e6ed;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.disclaimer-section {
    background: #fff8e1;
    padding: 40px;
    margin: 80px 0;
}

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

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

.footer-asymmetric {
    background: #1a2332;
    color: #ffffff;
    padding: 60px 40px 30px;
    margin-top: 100px;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-brand h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

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

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left {
        flex: 0 0 100%;
        padding-right: 0;
    }

    .hero-image-right {
        flex: 0 0 100%;
        margin-top: 0;
    }

    .intro-wrap {
        flex-direction: column;
    }

    .problem-overlap {
        flex-direction: column;
    }

    .problem-text-float {
        margin-left: 0;
    }

    .service-card {
        flex-direction: column !important;
    }

    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5 {
        margin-left: 0 !important;
    }

    .service-image {
        flex: 0 0 100%;
    }

    .trust-scattered {
        flex-direction: column;
    }

    .trust-content-block,
    .trust-image-float {
        flex: 0 0 100%;
    }

    .trust-stats-cluster {
        flex-direction: column;
    }

    .testimonial-2,
    .testimonial-3 {
        margin-left: 0;
    }

    .form-container-offset {
        margin-left: 0;
    }
}

.page-header-offset {
    max-width: 1400px;
    margin: 60px auto 80px;
    padding: 0 40px;
}

.page-header-content {
    max-width: 900px;
    margin-left: 80px;
}

.page-header-content h1 {
    font-size: 48px;
    color: #1a4d7d;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-header-content p {
    font-size: 20px;
    color: #546e7a;
    line-height: 1.6;
}

.services-detailed {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-image {
    flex: 0 0 48%;
    background-color: #e8eef3;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    color: #1a4d7d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-detail-content p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-benefits {
    list-style: none;
    margin-bottom: 32px;
}

.service-benefits li {
    padding: 12px 0 12px 32px;
    font-size: 16px;
    color: #2c3e50;
    position: relative;
    line-height: 1.6;
}

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

.service-pricing-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 500;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.cta-section-centered {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
    padding: 80px 40px;
    margin: 100px 0;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 38px;
    color: #1a4d7d;
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-wrapper p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 32px;
}

.about-hero {
    max-width: 1400px;
    margin: 60px auto 80px;
    padding: 0 40px;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-intro h1 {
    font-size: 46px;
    color: #1a4d7d;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-intro p {
    font-size: 19px;
    color: #546e7a;
    line-height: 1.7;
}

.about-content-split {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 34px;
    color: #1a4d7d;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-text-block p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-image-block {
    flex: 0 0 45%;
    background-color: #e0f2f1;
    border-radius: 8px;
    overflow: hidden;
}

.about-image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

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

.values-header h2 {
    font-size: 38px;
    color: #1a4d7d;
    margin-bottom: 16px;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #1a4d7d;
}

.value-card h3 {
    font-size: 22px;
    color: #1a4d7d;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-page-wrapper {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

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

.contact-header h1 {
    font-size: 44px;
    color: #1a4d7d;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-header p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.6;
}

.contact-info-layout {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-info-block h2 {
    font-size: 28px;
    color: #1a4d7d;
    margin-bottom: 32px;
}

.info-item {
    margin-bottom: 28px;
}

.info-item h3 {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.thanks-wrapper {
    max-width: 900px;
    margin: 100px auto;
    padding: 80px 60px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ffffff;
}

.thanks-wrapper h1 {
    font-size: 42px;
    color: #1a4d7d;
    margin-bottom: 20px;
    line-height: 1.2;
}

.thanks-wrapper p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-confirmation {
    background: #f0f9ff;
    padding: 24px;
    border-radius: 6px;
    margin: 32px 0;
}

.service-confirmation strong {
    color: #1a4d7d;
    font-size: 17px;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 40px;
    color: #1a4d7d;
    margin-bottom: 16px;
    line-height: 1.2;
}

.legal-page .last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.legal-page h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-page li {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 0 0 100%;
    }

    .about-content-split {
        flex-direction: column;
    }

    .about-image-block {
        flex: 0 0 100%;
    }

    .contact-info-layout {
        flex-direction: column;
    }
}

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

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
    }

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

    .hero-subtitle {
        font-size: 17px;
    }

    .intro-text-offset h2 {
        font-size: 28px;
    }

    .services-header-offset {
        margin-left: 0;
    }

    .services-header-offset h2 {
        font-size: 32px;
    }

    .form-container-offset {
        padding: 40px 30px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .page-header-content {
        margin-left: 0;
    }

    .page-header-content h1 {
        font-size: 36px;
    }

    .about-intro h1 {
        font-size: 34px;
    }

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

    .contact-header h1 {
        font-size: 34px;
    }

    .contact-info-block {
        padding: 35px 25px;
    }

    .thanks-wrapper {
        padding: 60px 30px;
    }

    .thanks-wrapper h1 {
        font-size: 32px;
    }
}