* {
    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: #1a2332;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.active {
    display: flex;
}

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

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

.cookie-content a {
    color: #5b9bd5;
    text-decoration: underline;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #5b9bd5;
    color: #ffffff;
}

.btn-primary:hover {
    background: #4a8bc2;
}

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-disclosure {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.ad-label {
    font-size: 0.75rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #2c3e50;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    position: relative;
}

.hero-text-block {
    width: 45%;
    padding: 8% 5% 5% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e8eef5 100%);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.hero-text-block p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    background: #3b5a7a;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #2d4a66;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59,90,122,0.3);
}

.hero-image-block {
    width: 55%;
    position: relative;
    overflow: hidden;
}

.hero-image-block img {
    width: 100%;
    height: 100%;
}

.intro-diagonal {
    display: flex;
    padding: 6rem 5%;
    background: #ffffff;
    gap: 4rem;
    align-items: center;
}

.intro-content {
    flex: 1.5;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.intro-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #3b5a7a 0%, #2d4a66 100%);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.services-grid-offset {
    padding: 6rem 5%;
    background: #fafbfc;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 3rem;
}

.section-header-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-header-left p {
    font-size: 1.15rem;
    color: #64748b;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

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

.service-card.large {
    width: calc(60% - 1rem);
}

.service-card.large-alt {
    width: calc(55% - 1rem);
}

.service-card.medium {
    width: calc(40% - 1rem);
}

.service-card.medium.offset {
    width: calc(45% - 1rem);
    margin-top: 3rem;
}

.service-card.small {
    width: calc(35% - 1rem);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-info p {
    color: #64748b;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b5a7a;
    margin-bottom: 1rem;
}

.select-service {
    background: #3b5a7a;
    color: #ffffff;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #2d4a66;
    transform: translateX(5px);
}

.approach-section {
    display: flex;
    min-height: 600px;
}

.approach-visual {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.approach-visual img {
    width: 100%;
    height: 100%;
}

.approach-text {
    width: 50%;
    padding: 5% 6%;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.approach-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-text {
    color: #3b5a7a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-text:hover {
    color: #2d4a66;
    transform: translateX(5px);
}

.form-section-offset {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #e8eef5 0%, #f4f7fa 100%);
    display: flex;
    gap: 4rem;
}

.form-intro {
    flex: 1;
    padding-right: 3rem;
}

.form-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.form-intro p {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
}

.form-container {
    flex: 1.2;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    color: #475569;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b5a7a;
    box-shadow: 0 0 0 3px rgba(59,90,122,0.1);
}

.btn-submit {
    background: #3b5a7a;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #2d4a66;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59,90,122,0.3);
}

.disclaimer-section {
    padding: 3rem 5%;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

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

.disclaimer-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    text-align: center;
}

.footer-asymmetric {
    background: #1e293b;
    color: #e2e8f0;
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-block {
    flex: 1;
    min-width: 200px;
}

.footer-block h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.2rem;
}

.footer-block p {
    color: #94a3b8;
    line-height: 1.6;
}

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

.footer-block ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(226,232,240,0.1);
    text-align: center;
    color: #94a3b8;
}

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

    .hero-text-block,
    .hero-image-block {
        width: 100%;
    }

    .hero-image-block {
        min-height: 400px;
    }

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

    .service-card.large,
    .service-card.large-alt,
    .service-card.medium,
    .service-card.medium.offset,
    .service-card.small {
        width: 100%;
        margin-top: 0;
    }

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

    .approach-visual,
    .approach-text {
        width: 100%;
    }

    .form-section-offset {
        flex-direction: column;
    }

    .form-intro {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-disclosure {
        position: static;
        transform: none;
        order: 3;
        width: 100%;
        text-align: center;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

.page-hero-offset {
    background: linear-gradient(135deg, #3b5a7a 0%, #2d4a66 100%);
    padding: 6rem 5%;
    text-align: center;
    color: #ffffff;
}

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

.page-hero-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-story {
    display: flex;
    min-height: 600px;
}

.story-content-left {
    width: 55%;
    padding: 5% 6%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.story-content-left p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image-right {
    width: 45%;
    overflow: hidden;
}

.story-image-right img {
    width: 100%;
    height: 100%;
}

.values-section {
    padding: 6rem 5%;
    background: #f8fafc;
}

.values-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1e293b;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.value-card.offset-up {
    margin-top: -2rem;
}

.value-card.offset-down {
    margin-top: 2rem;
}

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
}

.expertise-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.expertise-intro {
    max-width: 700px;
    margin-bottom: 4rem;
}

.expertise-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.expertise-intro p {
    font-size: 1.15rem;
    color: #64748b;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #3b5a7a;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.expertise-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b5a7a;
    min-width: 80px;
    opacity: 0.3;
}

.expertise-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.expertise-details p {
    color: #64748b;
    line-height: 1.7;
}

.approach-detail {
    display: flex;
    min-height: 600px;
}

.approach-visual-alt {
    width: 45%;
    overflow: hidden;
}

.approach-visual-alt img {
    width: 100%;
    height: 100%;
}

.approach-text-alt {
    width: 55%;
    padding: 5% 6%;
    background: linear-gradient(135deg, #f8fafc 0%, #e8eef5 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-text-alt h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.approach-text-alt p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-section-offset {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #3b5a7a 0%, #2d4a66 100%);
}

.cta-content-center {
    text-align: center;
    color: #ffffff;
}

.cta-content-center h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content-center p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-content-center .cta-primary {
    background: #ffffff;
    color: #3b5a7a;
}

.cta-content-center .cta-primary:hover {
    background: #f1f5f9;
    color: #2d4a66;
}

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

.service-detail-card {
    margin-bottom: 4rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.service-detail-header {
    display: flex;
    position: relative;
}

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

.service-detail-image {
    width: 50%;
    height: 400px;
    overflow: hidden;
}

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

.service-detail-title {
    width: 50%;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e8eef5 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b5a7a;
}

.service-detail-content {
    padding: 3rem;
    background: #ffffff;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

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

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    line-height: 1.7;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b5a7a;
    font-weight: 700;
}

.service-ideal {
    background: #f8fafc;
    padding: 1.5rem;
    border-left: 4px solid #3b5a7a;
    margin-bottom: 2rem;
    color: #475569;
    line-height: 1.7;
}

.process-section {
    padding: 6rem 5%;
    background: #f8fafc;
}

.process-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1e293b;
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.step-marker {
    width: 60px;
    height: 60px;
    background: #3b5a7a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.process-step p {
    color: #64748b;
    line-height: 1.7;
}

.contact-cta-offset {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #e8eef5 0%, #f4f7fa 100%);
}

.contact-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #64748b;
}

.contact-info-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.contact-details-block {
    max-width: 800px;
}

.contact-details-block h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #3b5a7a;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
}

.email-display {
    font-weight: 500;
    color: #1e293b;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #3b5a7a 0%, #2d4a66 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay p {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 600;
}

.thanks-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #f8fafc 0%, #e8eef5 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #22c55e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.thanks-message {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-selected {
    font-size: 1.1rem;
    color: #475569;
}

.service-selected strong {
    color: #3b5a7a;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #3b5a7a;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #3b5a7a;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #3b5a7a;
    color: #ffffff;
}

.next-steps-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.next-steps-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1e293b;
}

.next-steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.next-step-card {
    flex: 1;
    min-width: 250px;
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b5a7a 0%, #2d4a66 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.next-step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.next-step-card p {
    color: #64748b;
    line-height: 1.7;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
    background: #ffffff;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d4a66;
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: #475569;
    line-height: 1.8;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 0.5rem;
}

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

    .story-content-left,
    .story-image-right {
        width: 100%;
    }

    .story-image-right {
        min-height: 400px;
    }

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

    .approach-visual-alt,
    .approach-text-alt {
        width: 100%;
    }

    .service-detail-header {
        flex-direction: column;
    }

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

    .service-detail-image,
    .service-detail-title {
        width: 100%;
    }

    .value-card.offset-up,
    .value-card.offset-down {
        margin-top: 0;
    }
}