/* Commitments Page Styles */
:root {
    --theme-color: #D62223;
    --secondary-color: #8B4513;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
}

/* Hero Section */
.commitments-hero {
    height: 70vh;
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.commitments-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/sustainability-bg.jpg') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.6;
}

/* Commitments Content */
.commitments-content {
    padding: 100px 0;
    background: var(--bg-light);
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-section {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--theme-color), var(--secondary-color));
}

.commitment-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(214, 34, 35, 0.15);
}

.commitment-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--theme-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(214, 34, 35, 0.3);
}

.commitment-section h2 {
    font-size: 2rem;
    color: var(--theme-color);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.commitment-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

/* Stats Section */
.commitment-stats {
    padding: 80px 0;
    background: white;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-header h2 {
    font-size: 3rem;
    color: var(--theme-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.stats-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.stat-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* CTA Section */
.commitment-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: white;
    color: var(--theme-color);
    border: 2px solid white;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--theme-color);
    transform: translateY(-2px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .commitments-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .commitment-section {
        padding: 40px 30px;
    }
    
    .commitment-section h2 {
        font-size: 1.5rem;
    }
    
    .stats-header h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .commitments-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .commitment-section {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}