/* About Page Styles */

/* Quality Commitment Banner */
.quality-commitment-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 4rem;
    padding-right: 0;
}

.banner-text {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 500px;
    margin-right: 0;
}

.banner-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-family: Georgia, serif;
}

.banner-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
}

.discover-more-btn {
    background-color: #2d5a2d;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.discover-more-btn:hover {
    background-color: #1a3d1a;
}

/* Meet Our Team Section */
.meet-our-team {
    background-color: white;
    padding: 4rem 0;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.team-subtitle {
    font-size: 1.1rem;
    color: #2d5a2d;
    font-family: Georgia, serif;
    font-weight: 300;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-heading {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
}

.team-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

/* Our Values Section */
.our-values {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.values-subtitle {
    font-size: 1.1rem;
    color: #2d5a2d;
    font-family: Georgia, serif;
    font-weight: 300;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.value-heading {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
}

.value-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    .team-title,
    .values-title {
        font-size: 2.2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .values-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .quality-commitment-banner {
        height: auto;
        min-height: 300px;
        padding: 2rem 0;
    }
    
    .banner-img {
        display: none;
    }
    
    .banner-content {
        padding: 0 1.5rem;
        justify-content: center;
        height: auto;
    }
    
    .banner-text {
        padding: 2rem;
        max-width: 100%;
        margin: 0;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .banner-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .banner-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .discover-more-btn {
        display: block;
        width: 100%;
        margin-top: 1rem;
    }
    
    .meet-our-team {
        padding: 3rem 0;
    }
    
    .team-title,
    .values-title {
        font-size: 2rem;
    }
    
    .team-subtitle,
    .values-subtitle {
        font-size: 1rem;
    }
    
    .team-container,
    .values-container {
        padding: 0 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-image {
        height: 250px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .our-values {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .quality-commitment-banner {
        padding: 1.5rem 0;
    }
    
    .banner-content {
        padding: 0 1rem;
    }
    
    .banner-text {
        padding: 1.5rem;
    }
    
    .banner-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .banner-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .discover-more-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .meet-our-team {
        padding: 2.5rem 0;
    }
    
    .team-title,
    .values-title {
        font-size: 1.75rem;
    }
    
    .team-subtitle,
    .values-subtitle {
        font-size: 0.9rem;
    }
    
    .team-container,
    .values-container {
        padding: 0 1rem;
    }
    
    .team-header,
    .values-header {
        margin-bottom: 2rem;
    }
    
    .team-grid {
        gap: 1rem;
    }
    
    .team-image {
        height: 200px;
        margin-bottom: 1rem;
    }
    
    .team-heading {
        font-size: 1.2rem;
    }
    
    .team-text {
        font-size: 0.9rem;
    }
    
    .values-grid {
        gap: 1rem;
    }
    
    .value-card {
        padding: 1.25rem;
    }
    
    .value-heading {
        font-size: 1.2rem;
    }
    
    .value-text {
        font-size: 0.9rem;
    }
    
    .our-values {
        padding: 2.5rem 0;
    }
} 