/* ============================================ */
/* SERVICE PAGE STYLES - OPTIMIZED FOR 100% ZOOM */
/* ============================================ */

/* ============================================ */
/* 1. HERO SECTION */
/* ============================================ */

.service-hero-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
    background: radial-gradient(ellipse at 20% 30%, #2B4150 0%, #2B4150 25%, #207C7E 55%, #1D95D1 100%) !important;
}

.service-hero-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* INCREASED */
}

.service-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.service-hero-text {
    color: #FFFFFF;
    animation: fadeInUp 0.8s ease-out;
}

/* Category Label - REDUCED SIZE */
.service-category-label {
    color: #6EB510;
    font-family: 'Inter', sans-serif;
    font-size: 14px; /* REDUCED from 18px */
    font-weight: 700;
    letter-spacing: 2px; /* REDUCED from 2.5px */
    text-transform: uppercase;
    margin-bottom: 20px; /* REDUCED from 24px */
    display: inline-block;
}

/* Hero Title - REDUCED SIZE */
.service-hero-title {
    color: #FFFFFF;
    font-family: 'Urbanist', sans-serif;
    font-size: 52px; /* REDUCED from 64px */
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px 0; /* REDUCED from 24px */
    animation: fadeInTyping 1.5s ease-out;
}

@keyframes fadeInTyping {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

.service-hero-subtitle {
    display: none;
}

/* Hero Description - REDUCED SIZE */
.service-hero-description {
    color: #F5F5F5;
    font-family: 'Inter', sans-serif;
    font-size: 16px; /* REDUCED from 18px */
    line-height: 1.7;
    margin: 0 0 32px 0; /* REDUCED from 40px */
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.service-hero-cta {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero CTA Button - REDUCED PADDING */
.service-hero-cta .btn-service-hero {
    display: inline-block;
    background: #2b4150;
    color: #FFFFFF;
    padding: 14px 36px; /* REDUCED from 16px 40px */
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px; /* REDUCED from 18px */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(92, 194, 207, 0.3);
    position: relative;
    overflow: hidden;
}

.service-hero-cta .btn-service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.service-hero-cta .btn-service-hero:hover {
    background: #2b4150;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(92, 194, 207, 0.4);
    color: #FFFFFF;
}

.service-hero-cta .btn-service-hero:hover::before {
    left: 100%;
}

/* ========== HERO IMAGE ========== */
.service-hero-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.service-hero-image-wrapper {
    position: relative;
    max-width: 460px;
    margin-left: auto;
    margin-right: -20px;
    transition: transform 0.4s ease;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.3s;
}

.service-hero-image-wrapper:hover {
    transform: none;
}

.service-hero-image-wrapper::before,
.service-hero-image-wrapper::after {
    display: none;
}

.service-hero-icon {
    display: none;
}

.service-hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: block;
    transition: transform 0.4s ease;
}

.service-hero-placeholder {
    background: rgba(255,255,255,0.1);
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 4px;
    padding: 60px 20px;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ========== RESPONSIVE HERO ========== */

/* Hide image at 968px and below */
@media screen and (max-width: 968px) {
    .service-hero-section .service-hero-content .service-hero-image,
    .service-hero-content .service-hero-image,
    .service-hero-image {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .service-hero-content {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-lg);
    }
    
    .service-hero-section {
        min-height: 400px;
    }
    
    .service-hero-title {
        font-size: 42px; /* REDUCED from 48px */
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-hero-section > .container {
        padding: 0 20px; /* Mobile padding */
    }
    
    .service-hero-section {
        padding: 80px 0 !important; /* INCREASED */
    }
    
    .service-hero-title {
        font-size: 40px !important; /* REDUCED from 36px */
    }
    
    .service-hero-description {
        font-size: 16px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .service-hero-title {
        font-size: 28px; /* REDUCED from 32px */
    }
    
    .service-category-label {
        font-size: 14px;
    }
    
    .service-hero-cta .btn-service-hero {
        width: 100%;
        text-align: center;
    }
}

/* ============================================ */
/* 2. FEATURES SECTION (2x2 Grid) */
/* ============================================ */

.service-features-section {
    background-color: #FFFFFF;
    padding: 100px 0; /* INCREASED from 80px */
}

.service-features-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* INCREASED */
}

.service-features-header {
    max-width: 900px;
    margin: 0 0 var(--spacing-xl) 0;
    text-align: left;
}

/* Section Label - REDUCED SIZE */
.service-features-header .section-label {
    color: #6EB510;
    font-family: 'Inter', sans-serif;
    font-size: 14px; /* REDUCED from 18px */
    font-weight: 700;
    letter-spacing: 2px; /* REDUCED from 2.5px */
    text-transform: uppercase;
    margin-bottom: 20px; /* REDUCED from 24px */
    display: inline-block;
}

/* Section Title - REDUCED SIZE */
.service-features-header .section-title {
    color: #2B4150;
    font-family: 'Urbanist', sans-serif;
    font-size: 36px; /* REDUCED from 48px */
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px 0; /* REDUCED from 24px */
}

/* Section Description - REDUCED SIZE */
.service-features-header .section-description {
    color: #2B4150;
    font-family: 'Inter', sans-serif;
    font-size: 16px; /* REDUCED from 18px */
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Card - REDUCED PADDING */
.service-feature-card {
    background: #FFFFFF;
    padding: 32px; /* REDUCED from 40px */
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 12px rgba(43, 65, 80, 0.1);
    text-align: left;
    position: relative;
    overflow: hidden;
    border: 1px solid #E6E9EC;
    border-top: 3px solid #5CC2CF;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #5CC2CF 50%, #1D95D1 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(43, 65, 80, 0.15);
    border-color: #5CC2CF;
}

.service-feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 20px; /* REDUCED from 24px */
    margin-bottom: 20px; /* REDUCED from 24px */
}

/* Feature Icon - REDUCED SIZE */
.feature-card-icon {
    width: 46px; /* REDUCED from 50px */
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
}

.feature-card-icon svg {
    color: #5CC2CF;
    transition: transform 0.3s ease;
}

.service-feature-card:hover .feature-card-icon svg {
    transform: scale(1.1);
}

/* Feature Title - REDUCED SIZE */
.service-feature-card .feature-title {
    color: #2B4150;
    font-family: 'Urbanist', sans-serif;
    font-size: 20px; /* REDUCED from 22px */
    font-weight: 900;
    margin: 0;
    line-height: 1.3;
}

.service-feature-card .feature-description {
    color: #2B4150;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.85;
}

/* ============================================ */
/* 3. HOW-TO / ACCORDION SECTION */
/* ============================================ */

.service-howto-section {
    background-color: #F5F5F5;
    padding: 100px 0; /* INCREASED from 80px */
}

.service-howto-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* INCREASED */
}

.service-howto-header {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    text-align: left;
}

/* Section Label - REDUCED SIZE */
.service-howto-header .section-label {
    color: #6EB510;
    font-family: 'Inter', sans-serif;
    font-size: 14px; /* REDUCED from 18px */
    font-weight: 700;
    letter-spacing: 2px; /* REDUCED from 2.5px */
    text-transform: uppercase;
    margin-bottom: 20px; /* REDUCED from 24px */
    display: inline-block;
}

/* Section Title - REDUCED SIZE */
.service-howto-header .section-title {
    color: #2B4150;
    font-family: 'Urbanist', sans-serif;
    font-size: 36px; /* REDUCED from 48px */
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px 0; /* REDUCED from 24px */
}

/* Section Description - REDUCED SIZE */
.service-howto-header .section-description {
    color: #2B4150;
    font-family: 'Inter', sans-serif;
    font-size: 16px; /* REDUCED from 18px */
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

.howto-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px; /* REDUCED from 24px */
}

.howto-item {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.howto-item:hover {
    box-shadow: 0 4px 16px rgba(92, 194, 207, 0.15);
}

/* Howto Question - REDUCED PADDING */
.howto-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px; /* REDUCED from 24px */
    padding: 32px; /* REDUCED from 40px */
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.howto-question:hover {
    background-color: rgba(92, 194, 207, 0.05);
}

.howto-question.active {
    background-color: rgba(92, 194, 207, 0.1);
}

.howto-number {
    display: none;
}

/* Howto Question Text - REDUCED SIZE */
.howto-question-text {
    color: #2B4150;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px; /* REDUCED from 20px */
    font-weight: 700;
    flex: 1;
}

.howto-icon {
    color: #5CC2CF;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.howto-question.active .howto-icon {
    transform: rotate(180deg);
}

.howto-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.howto-answer:not([hidden]) {
    max-height: 1000px;
}

/* Howto Answer Content - REDUCED PADDING AND SIZE */
.howto-answer-content {
    padding: 20px 32px var(--spacing-xl); /* REDUCED from 24px 40px */
    color: #2B4150;
    font-family: 'Inter', sans-serif;
    font-size: 16px; /* REDUCED from 18px */
    line-height: 1.7;
    border-top: 3px solid #5CC2CF;
}

.howto-answer-content p {
    margin: 0 0 20px 0; /* REDUCED from 24px */
}

.howto-answer-content p:last-child {
    margin-bottom: 0;
}

.howto-answer-content ul,
.howto-answer-content ol {
    margin: 20px 0; /* REDUCED from 24px */
    padding-left: 32px; /* REDUCED from 40px */
}

.howto-answer-content li {
    margin-bottom: 14px; /* REDUCED from 16px */
}

.howto-answer-content a {
    color: #1D95D1;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.howto-answer-content a:hover {
    color: #6EB510;
}

.howto-answer-content strong {
    color: #2B4150;
    font-weight: 700;
}

.howto-answer-content em {
    font-style: italic;
}

.howto-answer-content h3,
.howto-answer-content h4 {
    font-family: 'Urbanist', sans-serif;
    color: #2B4150;
    font-weight: 700;
    margin: 20px 0 14px 0; /* REDUCED from 24px 0 16px */
}

.howto-answer-content h3 {
    font-size: 18px; /* REDUCED from 20px */
}

.howto-answer-content h4 {
    font-size: 16px; /* REDUCED from 18px */
}

/* ============================================ */
/* 4. BENEFITS SECTION (Checkmarks) */
/* ============================================ */

.service-benefits-section {
    background-color: #FFFFFF;
    padding: 100px 0; /* INCREASED from 80px */
}

.service-benefits-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* INCREASED */
}

.service-benefits-header {
    max-width: 900px;
    margin: 0 0 var(--spacing-xl) 0;
    text-align: left;
}

/* Benefits Title - REDUCED SIZE */
.service-benefits-header .section-title {
    color: #2B4150;
    font-family: 'Urbanist', sans-serif;
    font-size: 36px; /* REDUCED from 48px */
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px 0; /* REDUCED from 24px */
}

/* Benefits Description - REDUCED SIZE */
.service-benefits-header .section-description {
    color: #2B4150;
    font-family: 'Inter', sans-serif;
    font-size: 16px; /* REDUCED from 18px */
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

.service-benefits-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

/* Benefit Item - REDUCED PADDING */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px; /* REDUCED from 24px */
    padding: 32px; /* REDUCED from 40px */
    background: #F5F5F5;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(92, 194, 207, 0.15);
}

.benefit-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item svg path {
    stroke: #6EB510;
}

.benefit-item span {
    color: #2B4150;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================ */
/* 5. CASE STUDY CALLOUT WITH PHOTO TILT */
/* ============================================ */

.service-case-study-callout {
    background: linear-gradient(135deg, #2B4150 0%, #207C7E 100%);
    padding: 100px 0; /* INCREASED from 80px */
}

.service-case-study-callout > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* INCREASED */
}

.case-study-callout-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

/* Case Study Label - REDUCED SIZE */
.case-study-callout-content .section-label {
    color: #6EB510;
    font-family: 'Inter', sans-serif;
    font-size: 14px; /* REDUCED from 18px */
    font-weight: 700;
    letter-spacing: 2px; /* REDUCED from 2.5px */
    text-transform: uppercase;
    margin-bottom: 20px; /* REDUCED from 24px */
    display: inline-block;
}

/* Case Study Title - REDUCED SIZE */
.case-study-callout-content .section-title {
    color: #FFFFFF;
    font-family: 'Urbanist', sans-serif;
    font-size: 36px; /* REDUCED from 48px */
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px 0; /* REDUCED from 24px */
}

/* Case Study Excerpt - REDUCED SIZE */
.case-study-excerpt {
    color: #F5F5F5;
    font-family: 'Inter', sans-serif;
    font-size: 16px; /* REDUCED from 18px */
    line-height: 1.7;
    margin: 0 0 32px 0; /* REDUCED from 40px */
    opacity: 0.9;
}

/* Case Study Button - REDUCED PADDING */
.btn-case-study {
    background-color: #5CC2CF;
    color: #FFFFFF;
    padding: 12px 28px; /* REDUCED from 14px 32px */
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-case-study:hover {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.case-study-callout-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.case-study-callout-image:hover {
    transform: rotate(-2deg) scale(1.02);
}

.case-study-callout-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================ */
/* 6. CTA SECTION */
/* ============================================ */

.service-cta-section {
    background-color: #F5F5F5;
    padding: 100px 0; /* INCREASED from 80px */
    text-align: center;
    position: relative;
}

.service-cta-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* INCREASED */
}

.service-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

/* CTA Heading - REDUCED SIZE */
.service-cta-heading {
    color: #2B4150;
    font-family: 'Urbanist', sans-serif;
    font-size: 36px; /* REDUCED from 48px */
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px 0; /* REDUCED from 24px */
}

/* CTA Description - REDUCED SIZE */
.service-cta-description {
    color: #2B4150;
    font-family: 'Inter', sans-serif;
    font-size: 16px; /* REDUCED from 18px */
    line-height: 1.6;
    margin: 0 0 32px 0; /* REDUCED from 40px */
    opacity: 0.8;
}

/* CTA Button - REDUCED PADDING */
.btn-service-cta {
    background-color: #6EB510;
    color: #FFFFFF;
    padding: 14px 36px; /* REDUCED from 16px 40px */
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-service-cta:hover {
    background-color: #1D95D1;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 149, 209, 0.3);
}

/* ============================================ */
/* 7. RESPONSIVE BREAKPOINTS */
/* ============================================ */

@media screen and (max-width: 968px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .service-hero-title {
        font-size: 42px;
    }
    
    .service-hero-image {
        display: none;
    }
    
    .service-hero-image-wrapper {
        margin-right: 0;
        transform: rotate(0deg);
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .service-benefits-list {
        grid-template-columns: 1fr;
    }
    
    .case-study-callout-inner {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .case-study-callout-image {
        order: -1;
    }
}

@media screen and (max-width: 768px) {
    .service-hero-section > .container,
    .service-features-section > .container,
    .service-howto-section > .container,
    .service-benefits-section > .container,
    .service-case-study-callout > .container,
    .service-cta-section > .container {
        padding: 0 20px; /* Mobile padding */
    }
    
    .service-hero-section,
    .service-features-section,
    .service-howto-section,
    .service-benefits-section,
    .service-case-study-callout,
    .service-cta-section {
        padding: 80px 0 !important; /* INCREASED from 48px */
    }
    
    .service-hero-title {
        font-size: 32px;
    }
    
    .service-features-header .section-title,
    .service-howto-header .section-title,
    .service-benefits-header .section-title,
    .case-study-callout-content .section-title,
    .service-cta-heading {
        font-size: 28px;
    }
    
    .service-feature-card {
        padding: 20px; /* REDUCED from 24px */
    }
    
    .howto-question {
        padding: 20px; /* REDUCED from 24px */
    }
    
    .howto-answer-content {
        padding: 20px 20px 32px; /* REDUCED from 24px 24px 40px */
    }
    
    .howto-question-text {
        font-size: 16px;
    }
    
    .howto-answer-content {
        font-size: 16px;
    }
    
    .feature-card-header {
        gap: 14px; /* REDUCED from 16px */
    }
    
    .feature-card-icon {
        width: 40px; /* REDUCED from 45px */
        height: 40px;
    }
    
    .feature-card-icon svg {
        width: 32px; /* REDUCED from 35px */
        height: 32px;
    }
    
    .service-feature-card .feature-title {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .service-hero-title {
        font-size: 28px;
    }
    
    .service-features-header .section-title,
    .service-howto-header .section-title,
    .service-benefits-header .section-title,
    .case-study-callout-content .section-title,
    .service-cta-heading {
        font-size: 24px;
    }
    
    .howto-question {
        padding: 14px 20px; /* REDUCED from 16px 24px */
    }
    
    .howto-question-text {
        font-size: 15px;
    }
    
    .howto-answer-content {
        font-size: 15px;
    }
    
    .benefit-item {
        padding: 20px; /* REDUCED from 24px */
    }
}

/* Override inline styles - Hide hero image at 968px and below */
@media screen and (max-width: 968px) {
    .service-hero-section .service-hero-content .service-hero-image[style] {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    .service-hero-content {
        grid-template-columns: 1fr !important;
    }
}