.hero-title {
    color: var(--base-dark-green);
    font-size: 20px;
}

.hero-subtitle {
    font-size: 14px;
    margin-bottom: 2rem;
}

.company-story {
    /* background: rgba(255, 255, 255, 0.95);
    border-radius: 20px; */
    padding: 3rem;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 16px;
    color: var(--base-dark-green);
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.image-placeholder {
    background: linear-gradient(135deg, var(var(var(--base-theme))), #764ba2);
    border-radius: 15px;
    padding: 3rem;
    color: white;
    font-size: 4rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.image-placeholder p {
    font-size: 1rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Mission & Vision Cards */
.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(var(var(--base-theme))), #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.values-section {
    padding: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(var(var(--base-theme))), #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 3rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.member-avatar {
    width: 100px;
    height: 100px;
    background-color: var(--base-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(var(var(--base-theme)));
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.stats-section {
    padding: 3rem;
}

.stat-item {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(var(var(--base-theme)));
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.contact-cta {
    padding: 3rem;
}

.contact-btn {
    background-color: var(--base-theme);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-btn:hover {
    background-color: var(--base-dark-green);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 18px;
    }
    
    .company-story,
    .values-section,
    .team-section,
    .stats-section,
    .contact-cta {
        padding: 2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 16px;
    }
    .hero-subtitle {
        font-size: 13px;
    }
    
    .company-story,
    .values-section,
    .team-section,
    .stats-section,
    .contact-cta {
        padding: 1.5rem;
    }
    
    .card-icon,
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .member-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}


