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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

.nav-floating {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 60px 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.hero-content-offset {
    max-width: 600px;
    position: relative;
    z-index: 10;
    margin-left: 8%;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 22px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-hero:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 700px;
    z-index: 5;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e0e0e0;
}

.intro-irregular {
    padding: 120px 60px;
    display: flex;
    gap: 80px;
    align-items: center;
    background: #ffffff;
}

.intro-block-left {
    flex: 1;
    max-width: 550px;
}

.intro-block-left h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-block-left p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.intro-block-right-offset {
    flex: 1;
    margin-top: -60px;
}

.intro-block-right-offset img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e0e0e0;
}

.insight-layer {
    padding: 100px 60px;
    background: #f8f9fb;
    position: relative;
}

.insight-container {
    display: flex;
    gap: 70px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.insight-text-overlap {
    flex: 1;
    background: #ffffff;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(40px);
}

.insight-text-overlap h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.insight-visual {
    flex: 1;
}

.insight-visual img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.services-asymmetric {
    padding: 120px 60px;
    background: #ffffff;
}

.section-title-offset {
    font-size: 52px;
    margin-bottom: 70px;
    margin-left: 12%;
    color: #1a1a1a;
}

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

.service-card {
    background: #f8f9fb;
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
}

.service-card-1 {
    transform: translateY(-20px);
}

.service-card-2 {
    transform: translateY(30px);
}

.service-card-3 {
    transform: translateY(-10px);
}

.service-card-4 {
    transform: translateY(20px);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-image-wrap {
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

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

.service-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-select-btn {
    width: 100%;
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cta-overlap {
    padding: 100px 60px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    position: relative;
}

.cta-content-irregular {
    max-width: 700px;
    margin-left: 15%;
    color: #ffffff;
}

.cta-content-irregular h2 {
    font-size: 48px;
    margin-bottom: 25px;
}

.cta-content-irregular p {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-button-secondary {
    display: inline-block;
    background: #ffffff;
    color: #0066cc;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.approach-section {
    padding: 120px 60px;
    background: #f8f9fb;
}

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

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

.approach-text-block h2 {
    font-size: 46px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.approach-text-block p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.approach-list {
    list-style: none;
    padding-left: 0;
}

.approach-list li {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.approach-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.approach-image-offset {
    flex: 1;
    transform: translateY(-40px);
}

.approach-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e0e0e0;
}

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

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 20%;
}

.form-intro {
    margin-bottom: 40px;
}

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

.form-intro p {
    font-size: 18px;
    color: #555;
}

.contact-form {
    background: #f8f9fb;
    padding: 50px;
    border-radius: 15px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    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: #0066cc;
}

.form-submit-btn {
    width: 100%;
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit-btn:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px 30px;
}

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

.footer-block {
    flex: 1;
}

.footer-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-block p {
    color: #aaa;
    line-height: 1.8;
}

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

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

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

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

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

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 25px 30px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.cookie-reject:hover {
    background: #555;
}

@media (max-width: 1200px) {
    .hero-image-overlap {
        width: 45%;
        right: 20px;
    }

    .services-grid-irregular {
        gap: 30px;
    }

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }
}

.page-hero {
    padding: 180px 60px 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-hero-content p {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 100px 60px;
    background: #ffffff;
}

.about-container {
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.about-text-block h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

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

.about-image-block img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e0e0e0;
}

.values-section {
    padding: 100px 60px;
    background: #f8f9fb;
    text-align: center;
}

.values-section h2 {
    font-size: 46px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.team-approach {
    padding: 100px 60px;
    background: #ffffff;
}

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

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e0e0e0;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.experience-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    text-align: center;
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
}

.experience-content h2 {
    font-size: 46px;
    margin-bottom: 30px;
}

.experience-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.services-detail-section {
    padding: 80px 60px;
    background: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto 80px;
    padding: 50px;
    background: #f8f9fb;
    border-radius: 20px;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
}

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

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

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

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

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin: 30px 0 20px;
}

.services-cta-section {
    padding: 100px 60px;
    background: #f8f9fb;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-cta-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

.cta-button-primary {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 16px 50px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-button-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

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

.contact-layout {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 44px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

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

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

.email-text {
    font-weight: 500;
    color: #1a1a1a;
}

.contact-image-block {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
}

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

.contact-approach-section {
    padding: 100px 60px;
    background: #f8f9fb;
}

.contact-approach-content {
    max-width: 1300px;
    margin: 0 auto;
}

.contact-approach-content h2 {
    font-size: 44px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

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

.step-item {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

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

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 60px 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.thanks-container {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #0066cc;
    color: #ffffff;
    font-size: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.thanks-subtitle {
    font-size: 22px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-message {
    margin-bottom: 40px;
}

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

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

.btn-primary {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: #f8f9fb;
    color: #1a1a1a;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #e8e9eb;
    transform: translateY(-2px);
}

.next-steps-section {
    padding: 100px 60px;
    background: #ffffff;
}

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

.next-steps-content h2 {
    font-size: 44px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

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

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

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

.timeline-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.legal-page {
    padding: 180px 60px 80px;
    background: #ffffff;
    min-height: 100vh;
}

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

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

.last-updated {
    font-size: 15px;
    color: #888;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    margin-top: 30px;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #1a1a1a;
}

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

.legal-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-section ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-section a:hover {
    color: #0052a3;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-floating {
        top: 20px;
        padding: 12px 25px;
    }

    .nav-container {
        gap: 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 120px 30px 60px;
        min-height: auto;
    }

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 42px;
    }

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

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 40px;
    }

    .intro-irregular {
        flex-direction: column;
        padding: 80px 30px;
        gap: 40px;
    }

    .intro-block-right-offset {
        margin-top: 0;
    }

    .insight-container {
        flex-direction: column;
        gap: 40px;
    }

    .insight-text-overlap {
        transform: none;
        padding: 40px 30px;
    }

    .services-asymmetric {
        padding: 80px 30px;
    }

    .section-title-offset {
        margin-left: 0;
        font-size: 38px;
    }

    .service-card {
        flex: 1 1 100%;
        transform: none !important;
    }

    .cta-content-irregular {
        margin-left: 0;
    }

    .approach-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .approach-image-offset {
        transform: none;
    }

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

    .contact-form {
        padding: 35px 25px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-hero {
        padding: 140px 30px 60px;
    }

    .page-hero-content h1 {
        font-size: 40px;
    }

    .about-container {
        flex-direction: column;
    }

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

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

    .service-detail-card {
        flex-direction: column !important;
        padding: 35px 30px;
    }

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

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

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