:root {
    --bg-body: #ffffff;
    --bg-light: #f9f9f9;
    --text-main: #333333;
    --text-light: #666666;
    --brand-yellow: #feca00; /* Matching the logo's gold-yellow */
    --brand-black: #000000;
    --brand-white: #ffffff;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    --header-height: 90px;
    --width-container: 1400px;
}

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

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    padding-top: 110px;
    font-size: 0.9rem;
    overflow-x: hidden;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800; /* Bolder font for security look */
    color: var(--brand-black);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.container {
    max-width: var(--width-container);
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Header - White & Clean */
header {
    background-color: var(--brand-white);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

header .container {
    padding: 1.2rem 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    flex-shrink: 0;
}

.logo-img {
    height: 75px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-left: auto;
}

.nav-links li {
    position: relative;
    list-style: none;
}

.nav-links > li > a {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--brand-black);
    padding: 0.5rem 0;
    position: relative;
    display: inline-block;
}

/* Yellow underline effect on hover */
.nav-links > li > a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--brand-yellow);
    transition: width 0.3s ease;
}

.nav-links > li > a:hover::before,
.nav-links > li > a.active::before {
    width: 100%;
}

.nav-links > li > a:hover {
    color: #555;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--brand-white);
    min-width: 240px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    z-index: 100;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    padding: 0.8rem 0;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out 0s, visibility 0s linear 0.2s;
}

/* Invisible bridge between menu and dropdown */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease-in-out 0.1s, visibility 0s linear 0s;
}

.dropdown:hover > a::before {
    display: none;
}

.dropdown-content a {
    color: var(--text-main);
    padding: 12px 24px;
    display: block;
    font-weight: 600;
    font-size: 0.92rem;
    text-transform: none;
    letter-spacing: 0.3px;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.dropdown-content a:hover {
    background-color: #fafafa;
    color: var(--brand-black);
    border-left-color: var(--brand-yellow);
    padding-left: 28px;
}

.dropdown-content a::before {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    background: var(--brand-black);
    border: none;
    color: var(--brand-white);
    font-size: 1.4rem;
    padding: 0.6rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    background-color: var(--brand-yellow);
    color: var(--brand-black);
}

.mobile-menu-btn.active {
    background-color: var(--brand-yellow);
    color: var(--brand-black);
}

/* Hero Section */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/hero.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    color: var(--brand-white);
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--brand-white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero h1 span {
    color: var(--brand-yellow);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--brand-yellow);
    color: var(--brand-black);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(254, 202, 0, 0.4);
    transition: all 0.3s ease;
    border-radius: 4px; /* Slight roundness */
}

.btn:hover {
    background-color: #ffdb4d; /* Lighter yellow */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 202, 0, 0.6);
}

/* Section General */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background-color: var(--brand-yellow);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* Features/Services Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 100%;
}

.feature-card {
    background-color: var(--brand-white);
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    top: 0;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-card:hover {
    top: -10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--brand-yellow);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--brand-yellow);
    margin-bottom: 1.5rem;
    display: inline-block;
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    flex-shrink: 0;
}

.feature-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.feature-card a {
    color: var(--brand-black);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--brand-yellow);
    padding-bottom: 3px;
    margin-top: auto;
}

.feature-card a:hover {
    background-color: var(--brand-yellow);
    color: var(--brand-black);
    text-decoration: none;
    padding: 3px 5px;
}

/* About Section Styles */
.about-preview {
    background-color: #f7f7f7;
    position: relative;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%); /* Slanted top edge design */
    padding-top: 8rem;
}

.about-content {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    height: 450px;
    background-color: var(--brand-white);
    border-radius: 8px;
    box-shadow: -20px 20px 0 0 var(--brand-yellow);
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    max-width: 180px;
    height: auto;
}

/* Locations */
.locations {
    background-color: var(--brand-white);
    text-align: center;
}

.location-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
}

.location-tag {
    background-color: var(--brand-white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 2px solid #eeeeee;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s;
}

.location-tag:hover {
    border-color: var(--brand-yellow);
    background-color: var(--brand-yellow);
    color: var(--brand-black);
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 0 2rem;
    border-top: 8px solid var(--brand-yellow);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
}

.footer-col .logo-img {
    filter: brightness(0) invert(1); /* Make logo white if it has transparency, else just use class */
    height: 60px;
    margin-bottom: 1rem;
}
/* Assuming logo.png is good as is, otherwise we might need a white version. 
   Since it's yellow/black, on dark footer it might need a white background or be fine. 
   Let's wrap it in a small box if needed or assume it's okay. 
   Actually, let's keep the text logo for footer or use the image. 
   I will use the text for footer for simplicity in clean code below, or image. */

.footer-col a.logo {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-white);
}
.footer-col a.logo span {
    color: var(--brand-yellow);
}

.footer-col h4 {
    color: var(--brand-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--brand-yellow);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: #bbbbbb;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--brand-yellow);
    padding-left: 5px;
}

.contact-info li {
    color: #bbbbbb;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info i {
    color: var(--brand-yellow);
    margin-top: 5px;
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #666;
}

/* Service Detail Pages */
.service-detail p {
    font-size: 1.15rem; 
    line-height: 1.8;
}

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

/* Fade-in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-light);
    padding: 7rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-box {
    background-color: var(--brand-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid var(--brand-yellow);
}

.contact-info-box h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--brand-yellow);
    min-width: 30px;
    margin-top: 5px;
}

.info-item strong {
    display: block;
    color: var(--brand-black);
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.info-item p {
    margin: 0;
    color: var(--text-light);
}

/* Contact Form */
.contact-form {
    background-color: var(--brand-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--brand-black);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-yellow);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer Logo */
.footer-logo {
    height: 90px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.phone-btn {
    background-color: var(--brand-yellow);
    color: var(--brand-black);
}

.phone-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(254,202,0,0.4);
}

.email-btn {
    background-color: var(--brand-black);
}

.email-btn:hover {
    transform: scale(1.1);
    background-color: #333;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--brand-black);
    color: var(--brand-yellow);
    border: 2px solid var(--brand-yellow);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--brand-yellow);
    color: var(--brand-black);
    transform: translateY(-5px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--brand-black);
    color: var(--brand-white);
    padding: 0.8rem 1rem;
    z-index: 1001;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-content p {
    margin: 0;
    color: var(--brand-white);
    font-size: 0.85rem;
}

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

.cookie-link {
    color: var(--brand-yellow);
    text-decoration: underline;
    font-size: 0.85rem;
}

.cookie-accept {
    background-color: var(--brand-yellow);
    color: var(--brand-black);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.cookie-accept:hover {
    background-color: #ffdb4d;
    transform: scale(1.05);
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--brand-white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--brand-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Breadcrumb */
.breadcrumb {
    display: none;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--brand-black) 0%, #2a2a2a 100%);
    padding: 5rem 0;
    color: var(--brand-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--brand-yellow);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-white);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background-color: var(--brand-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.team-photo {
    width: 120px;
    height: 120px;
    background-color: var(--bg-light);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--brand-yellow);
}

.team-photo i {
    font-size: 3rem;
    color: var(--brand-black);
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--brand-yellow);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Service Hero Backgrounds */
.service-hero {
    background-blend-mode: overlay;
}

/* Responsive */
@media (max-width: 900px) {
    body {
        padding-top: 80px;
    }
    
    h1 {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    h2 {
        font-size: 1.6rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .section-title {
        padding: 0 1rem;
        margin-bottom: 3rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
        padding: 0 0.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    header .container {
        padding: 1rem 1.5rem;
    }

    .logo-img {
        height: 55px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--brand-white);
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 0;
        margin-left: 0;
        overflow-y: auto;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
        padding: 1.5rem 0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links > li > a {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .nav-links > li > a::before {
        bottom: 0;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        background-color: #f9f9f9;
        width: 100%;
        padding: 0;
        border-top: none;
        border-radius: 0;
        margin-top: 1rem;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .dropdown:hover .dropdown-content {
        top: auto;
    }

    .dropdown-content a {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        width: 100%;
        height: 300px;
        box-shadow: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-box {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .hero {
        width: 100vw;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .footer-logo {
        height: 70px;
    }
    
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-accept {
        width: 100%;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .container {
        padding: 0 1rem;
        width: 100%;
    }
    
    section {
        overflow-x: hidden;
    }
    
    .features-grid,
    .stats-grid,
    .team-grid,
    .location-list {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        gap: 1.5rem;
    }
    
    .feature-card {
        margin: 0;
        width: 100%;
    }
    
    .location-tag {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}
