/**
 * About Us Page Specific Styles
 * Scoped to prevent side effects
 */

/* Container Fixes */
.acme-about-page-wrapper .acme-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    display: block;
    /* Ensure sections stack vertically */
}

/* Page-specific Header Spacing Reduction */
.acme-about-page-wrapper .acme-archive-header {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

/* Ensure sections stack and take full width */
.acme-about-page-wrapper .acme-section {
    display: block;
    width: 100%;
    padding: 60px 0;
    /* Reduced from 100px for tighter layout */
}

.acme-section__title {
    text-align: center;
    margin-bottom: 24px;
}

.acme-section__title--left {
    text-align: left;
    margin-bottom: 16px;
}

/* Responsive Grid System */
.acme-grid-3,
.acme-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Text Image Split */
.acme-text-image-split,
.acme-cta-split {
    display: flex;
    align-items: center;
    gap: 60px;
    /* Increased gap for better breathing room */
}

.acme-text-image-split>*,
.acme-cta-split>* {
    flex: 1;
}

.acme-split-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    background: #f8fafc;
}

.acme-story-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Image Handling */
.acme-about-page-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Tablet Breakpoint (max-width: 1024px) */
@media screen and (max-width: 1024px) {

    /* Fix: Remove blue vignette glow on tablet */
    .acme-about-page-wrapper {
        box-shadow: none !important;
    }

    .acme-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .acme-section {
        padding: 40px 0;
    }

    .acme-split-image {
        margin: 0 auto;
    }
}

/* Mobile Breakpoint (max-width: 768px) */
@media screen and (max-width: 768px) {

    .acme-grid-3,
    .acme-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .acme-text-image-split,
    .acme-cta-split {
        flex-direction: column;
        gap: 20px;
    }

    /* Fix stats overlap */
    .acme-stats-grid {
        text-align: center;
    }

    .acme-section {
        padding: 30px 0;
    }
}

/* =========================================
   Our Story Section Polishing
   ========================================= */
.acme-about-story {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

/* Subtle background accent circle */
/* Removed radial gradient to fix 'patchy' look as requested by user */
.acme-about-story::before {
    display: none;
}

.acme-about-story .acme-container {
    position: relative;
    z-index: 1;
}

.acme-section__title,
.acme-section__title--left {
    font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem) !important;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--header-margin-fluid);
    display: inline-block;
    background-image: linear-gradient(to right, #0f172a 20%, #3b82f6 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback */
    letter-spacing: -0.02em;
    position: relative;
}

.acme-section__title {
    display: table;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.acme-section__title--left {
    display: inline-block;
    text-align: left;
}

.acme-section__title::after,
.acme-section__title--left::after {
    display: none;
}

.acme-section__title::after {
    left: 50%;
    transform: translateX(-50%);
}


.acme-title-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
}

.acme-story-subtitle {
    display: inline-flex;
    align-items: center;
    background: #f1f5f9;
    color: #64748b;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #e2e8f0;
}

.acme-prose {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.125rem;
    /* Standardized to 18px for readability */
}

.acme-prose p {
    margin-bottom: 16px;
}

/* Enhanced Image Container */
.acme-split-image {
    position: relative;
    border-radius: 32px;
    overflow: visible;
    background: none;
    box-shadow: none;
    max-width: 550px;
    /* Prevent image from being too wide */
    width: 100%;
    margin-left: auto;
    /* Push towards the right */
}

.acme-image-inner-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Decorative background for image */
.acme-split-image::after {
    content: "";
    position: absolute;
    top: 30px;
    right: -30px;
    bottom: -30px;
    left: 30px;
    border: 2px solid #e5e7eb;
    border-radius: 32px;
    z-index: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.acme-split-image:hover::after {
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    border-color: #117DBC;
}

.acme-story-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}


/* =========================================
   Mission & Vision Section
   ========================================= */
.acme-about-mission {
    background-color: #f9fafb;
    /* Subtle contrast from Section 1 */
    border-top: 1px solid #f1f5f9;
}

.acme-info-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.acme-info-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.acme-info-card .acme-icon-box {
    margin-bottom: 24px;
    color: #117DBC;
}

.acme-card-title {
    font-size: 1.25rem;
    /* Standardized from 1.5rem for better hierarchy */
    font-weight: 700;
    margin-bottom: 16px;
    color: #000c29;
}

/* =========================================
   Team Section Polishing (Premium Minimalist)
   ========================================= */
.acme-about-team {
    background-color: #ffffff;
}

.acme-team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 0;
    /* Fixed inconsistent spacing */
}

.acme-team-card {
    flex: 1 1 300px;
    max-width: 360px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.acme-team-card:hover {
    border-color: #e2e8f0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.acme-team-avatar-wrapper {
    width: 180px;
    height: 180px;
    margin: 35px auto 15px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8fafc;
    position: relative;
    border: 1px solid #f1f5f9;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.1);
}

.acme-team-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.acme-team-content {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.acme-team-name {
    font-size: 1.25rem;
    /* Standardized to match other card titles */
    font-weight: 700;
    color: #000c29;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.acme-team-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.acme-team-name a:hover {
    color: #117DBC;
}

.acme-team-card-link {
    text-decoration: none;
    display: block;
    outline: none;
}

.acme-team-role {
    font-size: 0.8125rem;
    /* Standardized small meta text (13px) */
    color: #117DBC;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.acme-team-bio {
    font-size: 1rem;
    /* Standardized to 16px base body */
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
}

.acme-team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
    /* Push to bottom of content area */
}

.acme-team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.acme-team-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    stroke: none;
    /* Reset for consistency */
}

/* Specific SVG handling based on type */
.acme-team-social a svg[stroke="currentColor"] {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.acme-team-social a:hover {
    background-color: #117DBC;
    border-color: #117DBC;
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .acme-team-grid {
        gap: 30px;
    }

    .acme-team-card {
        max-width: 100%;
        /* Full width on mobile */
    }
}

/* =========================================
   Show More Toggle Styles 
   ========================================= */
.acme-story-content {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.acme-story-collapsed {
    max-height: 350px;
    overflow: hidden;
    position: relative;
}

/* Fade Overlay for collapsed state */
.acme-story-collapsed::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
    pointer-events: none;
}

.acme-show-more-wrapper {
    text-align: left;
    margin-top: 24px;
}

.acme-expand-all-btn {
    background-color: #000c29;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 12, 41, 0.1);
}

.acme-expand-all-btn:hover {
    background-color: #117DBC;
    box-shadow: 0 20px 25px -5px rgba(17, 125, 188, 0.2);
}

/* =========================================
   Bento CTA Section
   ========================================= */
.acme-cta-bento {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(3, minmax(90px, auto));
    gap: 12px;
    width: 100%;
}

.acme-bento-card {
    position: relative;
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.acme-bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Primary Card (Large) */
.acme-bento-card--primary {
    grid-column: 1;
    grid-row: span 3;
    background: linear-gradient(135deg, #117dbc 0%, #0d5f8f 100%);
    color: #ffffff;
    justify-content: space-between;
    min-height: 300px;
    padding: 24px;
}

.acme-bento-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    width: fit-content;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

.acme-bento-title {
    font-size: 2rem;
    /* Adjusted for impact and scale consistency */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.acme-bento-text {
    font-size: 1rem;
    /* Standardized to base body */
    line-height: 1.5;
    margin-bottom: 16px;
    opacity: 0.9;
    max-width: 90%;
}

/* Secondary Card */
.acme-bento-card--secondary {
    background: linear-gradient(135deg, #5ba3d0 0%, #4a8fb8 100%);
    color: #ffffff;
    grid-column: span 1;
    grid-row: span 1;
}

.acme-bento-title-small {
    font-size: 1.25rem;
    /* Standardized to match other card titles */
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff !important;
}

.acme-bento-text-small {
    font-size: 0.9375rem;
    /* Slightly smaller than base but readable (15px) */
    opacity: 0.8;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Stat Card */
.acme-bento-card--stat {
    background: linear-gradient(135deg, #3f91c6 0%, #2d7ba8 100%);
    border: 1px solid rgba(63, 145, 198, 0.3);
    color: #ffffff;
    grid-column: span 1;
    grid-row: span 1;
}

.acme-bento-card--stat .acme-bento-content {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.acme-bento-stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.acme-bento-stat-num {
    font-size: 2.5rem;
    /* Unified stats scale */
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.acme-bento-stat-label {
    font-size: 0.75rem;
    /* Unified label scale (12px) */
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

/* Icon container in stats card */
.acme-bento-card--stat .acme-bento-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.8);
}

.acme-bento-card--stat .acme-bento-icon svg {
    width: 40px;
    height: 40px;
}

.acme-bento-card:hover .acme-bento-icon {
    color: rgba(255, 255, 255, 1);
}

/* Rating Card */
.acme-bento-card--rating {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #ffffff;
    grid-column: span 1;
    grid-row: span 1;
}

.acme-bento-card--rating .acme-bento-content {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.acme-google-icon-large {
    flex-shrink: 0;
}

.acme-google-icon-large svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.acme-bento-rating-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.acme-bento-rating-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 3px;
    color: #fbbf24;
}

.acme-bento-rating-stars svg {
    width: 18px;
    height: 18px;
}

.acme-bento-rating-num {
    font-size: 2.5rem;
    /* Unified with bento stats */
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 2px;
    letter-spacing: -0.02em;
}

.acme-bento-rating-label {
    font-size: 0.75rem;
    /* Unified label scale */
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Decorative SVG */
.acme-bento-deco {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.acme-bento-content {
    position: relative;
    z-index: 1;
}

/* Bento Grid Button Refinements */
.acme-bento-card .acme-btn {
    padding: 12px 28px;
    font-weight: 800;
    border-radius: 12px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: none;
    cursor: pointer;
    border: none;
}

.acme-bento-card--primary .acme-btn--light {
    background: #ffffff !important;
    color: #117DBC !important;
}

.acme-bento-card--primary .acme-btn--light:hover {
    background: #f0f9ff !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.acme-bento-card--secondary .acme-btn--outline-light {
    background: #ffffff !important;
    /* Changed to solid for visibility */
    color: #000c29 !important;
    border: none !important;
    padding: 10px 24px;
    font-size: 0.85rem;
}

.acme-bento-card--secondary .acme-btn--outline-light:hover {
    background: #e2e8f0 !important;
    transform: translateY(-3px);
}

/* Add an arrow icon to the primary button */
.acme-bento-card--primary .acme-btn--light::after {
    content: "→";
    font-family: Arial, sans-serif;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.acme-bento-card--primary .acme-btn--light:hover::after {
    transform: translateX(6px);
}

/* Responsive Bento */
@media screen and (max-width: 1024px) {
    .acme-cta-bento {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: repeat(3, minmax(120px, auto));
    }

    .acme-bento-title {
        font-size: 2.25rem;
    }

    .acme-bento-card--primary {
        min-height: 380px;
    }
}

@media screen and (max-width: 768px) {
    .acme-cta-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .acme-bento-card--primary {
        grid-column: span 1;
        grid-row: span 1;
        min-height: auto;
        padding: 40px 30px;
    }

    .acme-bento-title {
        font-size: 1.8rem;
    }

    .acme-bento-card .acme-btn {
        width: 100%;
        margin-top: 10px;
    }
}

/* =========================================
   Location & Contact Section - Modernized
   ========================================= */

.acme-about-location {
    padding: 35px 0 !important;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.acme-about-location::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    /* background: radial-gradient(circle, rgba(17, 125, 188, 0.08) 0%, transparent 70%); */
    background: none;
    border-radius: 50%;
    pointer-events: none;
}

.acme-about-location .acme-section__title {
    font-size: 2.25rem !important;
    /* Unified with other H2s */
    font-weight: 800;
    color: #000c29;
    margin-bottom: 40px;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.acme-about-location .acme-section__title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #117DBC 0%, #5ba3d0 100%);
    border-radius: 2px;
}

.acme-location-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    background: #ffffff;
    padding: 48px;
    border-radius: 24px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.acme-location-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.acme-location-info h3 {
    font-size: 1.5rem;
    /* Standardized with other location-related titles */
    font-weight: 800;
    color: #000c29;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 16px;
}

.acme-location-info h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #117DBC;
    border-radius: 2px;
}

.acme-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px !important;
}

.acme-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 12px 10px;
    background: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.acme-info-item:hover {
    background: none;
    transform: translateX(8px);
    box-shadow: none;
}

.acme-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(17, 125, 188, 0.08);
    color: #117DBC;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.acme-info-item:hover .acme-info-icon {
    background: #117DBC;
    color: #ffffff;
    transform: rotate(-5deg) scale(1.1);
}

.acme-info-icon svg {
    width: 22px;
    height: 22px;
}

.acme-info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.acme-info-label {
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.acme-info-value {
    color: #1e293b;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
}

.acme-info-value a {
    color: #1e293b;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.acme-info-value a:hover {
    color: #117DBC;
    border-bottom-color: rgba(17, 125, 188, 0.3);
}

.acme-location-map {
    position: relative;
}

.acme-map-embed {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.acme-map-embed:hover {
    transform: translateY(-4px);
}

.acme-map-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 14px;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .acme-location-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 36px;
    }

    .acme-about-location .acme-section__title {
        font-size: 2rem;
    }

    .acme-location-info h3 {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .acme-info-list {
        gap: 20px !important;
    }
}

@media screen and (max-width: 768px) {
    .acme-about-location {
        padding: 20px 0 !important;
    }

    .acme-location-container {
        padding: 28px 20px;
        gap: 32px;
    }

    .acme-about-location .acme-section__title {
        font-size: 1.75rem;
        margin-bottom: 32px;
    }

    .acme-location-info h3 {
        font-size: 1.35rem;
    }

    .acme-info-item {
        padding: 8px 0;
        gap: 15px;
        font-size: 0.95rem;
    }

    .acme-map-embed {
        padding-bottom: 85%;
    }
}

/* =========================================
   Statistics Section (Full Width)
   ========================================= */
.acme-section--stats {
    background-color: #000c29;
    /* Dark Navy */
    color: #ffffff;
}

.acme-stats-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    text-align: center;
}

.acme-stat-box {
    padding: 20px;
}

.acme-stat-number {
    font-size: 2.5rem;
    /* Unified stats scale (standardized from 3rem) */
    font-weight: 800;
    margin-bottom: 8px;
    display: block;
    color: #ffffff;
}

.acme-stat-label {
    font-size: 0.875rem;
    /* Standardized meta text (14px) */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 992px) {
    .acme-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px;
    }
}

@media screen and (max-width: 480px) {
    .acme-stats-grid {
        grid-template-columns: 1fr !important;
    }

    .acme-stat-number {
        font-size: 2.5rem;
    }
}