:root {
    --gm-primary: #2E3A73;
    --gm-accent: #D4A017;
    --gm-eco: #3FAE5A;
    --gm-light: #F9FAFB;
    --gm-white: #FFFFFF;
}

.gm-sustainability-page {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    overflow-x: hidden;
}

.gm-section {
    padding: 80px 20px;
    position: relative;
}

.gm-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gm-narrow {
    max-width: 800px;
}

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

.bg-light {
    background: var(--gm-light);
}

.gm-main-header {
    margin-bottom: 50px;
}

.gm-subtitle {
    color: var(--gm-eco);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.gm-title {
    font-size: 3.5rem;
    color: var(--gm-primary);
    line-height: 1.2;
    margin-bottom: 25px;
}

.gm-title-md {
    font-size: 2.5rem;
    color: var(--gm-primary);
    margin-bottom: 20px;
}

.gm-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.gm-desc-large {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Image Wrapper */
.gm-main-image-wrapper {
    margin: 0 auto;
    max-width: 1000px;
}

.gm-image-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gm-main-placeholder {
    aspect-ratio: 16/9;
    min-height: 300px;
}

.gm-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
}

.gm-label {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.95);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--gm-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Features Grid */
.gm-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.gm-feature-card {
    background: var(--gm-white);
    padding: 15px 25px;
    border-radius: 30px;
    color: var(--gm-primary);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.gm-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.gm-btn {
    padding: 16px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.gm-btn-primary {
    background: var(--gm-primary);
    color: var(--gm-white);
}
.gm-btn-primary:hover {
    background: var(--gm-eco);
    transform: translateY(-2px);
}

.gm-btn-outline-light {
    border: 2px solid var(--gm-white);
    color: var(--gm-white);
}
.gm-btn-outline-light:hover {
    background: var(--gm-white);
    color: var(--gm-primary);
}

.text-white {
    color: var(--gm-white) !important;
}

/* Specific Sections */
.gm-hero-single {
    padding-top: 100px;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.gm-impact, .gm-cta {
    background: var(--gm-primary);
}
.gm-impact .gm-desc {
    color: rgba(255,255,255,0.8);
}

.gm-counters {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    justify-content: center;
}
.gm-counter {
    text-align: center;
}
.gm-counter-num {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gm-eco);
    line-height: 1;
    margin-bottom: 10px;
}
.gm-counter-label {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .gm-title {
        font-size: 2.5rem;
    }
    .gm-title-md {
        font-size: 2rem;
    }
    .gm-counters {
        flex-direction: column;
        gap: 30px;
    }
    .gm-actions {
        flex-direction: column;
    }
}
