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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
}

.hero {
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.95) 0%, rgba(74, 124, 89, 0.95) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f8f9fa" width="1200" height="600"/><circle fill="%23e9ecef" cx="300" cy="150" r="100" opacity="0.3"/><circle fill="%23dee2e6" cx="900" cy="450" r="150" opacity="0.2"/></svg>');
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-about-us {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

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

.hero p {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-page-section {
    padding: 80px 0;
}

.about-page-section:nth-child(even) {
    background: linear-gradient(135deg, #f8fffe 0%, #f1f8f6 100%);
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-page-title {
    text-align: center;
    font-size: 2.8rem;
    color: #2c5530;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    margin-bottom: 20px;
}

.section-page-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #666;
}

.content-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.content-page-text h3 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
}

.content-page-text h3::before {
    content: '';
    width: 40px;
    height: 3px;
    background: #2c5530;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.content-page-text p {
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
    font-size: 1.1rem;
}

.content-page-text strong {
    color: #2c5530;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(44, 85, 48, 0.15);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.highlight-box h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

.highlight-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

.mission-page-vision-box {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(44, 85, 48, 0.15);
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.mission-page-vision-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.mission-page-vision-box h3 {
    color: white;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.mission-page-vision-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    text-align: center;
    position: relative;
}

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

.stat-card {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2c5530;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.05rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credentials-page-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: 40px;
}

.credentials-page-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.ethics-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.ethics-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ethics-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ethics-item i {
    color: #2c5530;
    font-size: 1.5rem;
}

.ethics-item span {
    font-weight: 500;
    color: #444;
}

.cta {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

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

.cta p {
    font-size: 1.05rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-large {
    background: white;
    color: #2c5530;
}

.btn-large:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: #2c5530;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .content-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-page-title {
        font-size: 2.2rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .page-container {
        padding: 0 20px;
    }

    .about-page-section {
        padding: 60px 0;
    }

    .highlight-box, .mission-vision-box {
        padding: 30px;
    }

    .credentials-page-content {
        padding: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .logo-about-us {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .stats-page-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .logo-about-us {
        max-width: 120px;
    }

    .ethics-list {
        grid-template-columns: 1fr;
    }
}