/* About Page Styles */

/* Hero Section */
.about-hero {
    padding: 80px 0;
    background-color: #f0f7f0;
    position: relative;
    overflow: hidden;
}

.about-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero-content {
    flex: 1;
    max-width: 600px;
}

.about-title {
    font-size: 3.5rem;
    color: #2e7d32;
    margin-bottom: 20px;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #2e7d32;
}

.about-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.about-hero-image {
    flex: 1;
    text-align: right;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Section Common Styles */
section {
    padding: 80px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: #2e7d32;
    margin: 0 auto 20px;
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Our Story Section */
.about-story {
    background-color: #fff;
}

.about-story-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-story-image {
    flex: 1;
}

.story-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-story-text {
    flex: 1;
}

.about-story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

/* Our Mission Section */
.about-mission {
    background-color: #f9f9f9;
}

.about-mission-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-mission-text {
    flex: 1;
}

.about-mission-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.mission-list {
    list-style-type: none;
    padding: 0;
}

.mission-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #444;
}

.mission-list li i {
    color: #2e7d32;
    margin-right: 10px;
    font-size: 1.2rem;
    margin-top: 3px;
}

.about-mission-image {
    flex: 1;
    text-align: right;
}

.mission-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.about-team {
    background-color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.team-member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.team-member-name {
    padding: 20px 20px 5px;
    font-size: 1.3rem;
    color: #2e7d32;
}

.team-member-role {
    padding: 0 20px;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-member-bio {
    padding: 0 20px 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Values Section */
.about-values {
    background-color: #f0f7f0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon i {
    font-size: 30px;
    color: #2e7d32;
}

.value-title {
    font-size: 1.3rem;
    color: #2e7d32;
    margin-bottom: 15px;
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Join Us Section */
.about-join {
    background-color: #fff;
    color: #333;
    text-align: center;
}

.join-content {
    max-width: 800px;
    margin: 0 auto;
}

.join-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.join-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2e7d32;
    color: #fff;
    border: 2px solid #2e7d32;
}

.btn-primary:hover {
    background-color: #1b5e20;
    border-color: #1b5e20;
    transform: translateY(-3px);
}

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

.btn-secondary:hover {
    background-color: #2e7d32;
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-hero .container,
    .about-story-content,
    .about-mission-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-hero-image,
    .about-story-image,
    .about-mission-image {
        margin-top: 40px;
        text-align: center;
    }
    
    .about-mission-text {
        order: 2;
    }
    
    .about-mission-image {
        order: 1;
    }
    
    .mission-list li {
        justify-content: center;
        text-align: left;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .join-title {
        font-size: 2rem;
    }
    
    .join-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}