/* About Page Styles */
body {
    background-color: #f9f9f9;
}

.about-section {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 3rem;
}

.about-section .section-header {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.main-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.main-title:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background-color: #d9a175;
    transform: translateX(-50%);
}

.section-description {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

/* About Content Styles */
.about-content {
    padding-top: 1rem;
}

.about-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-img-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-img-container img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.about-text {
    padding: 15px;
}

.about-text h3 {
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.about-text h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #d9a175;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Values Section Styles */
.values-section {
    padding: 3rem 0;
}

.value-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.value-icon {
    font-size: 2.5rem;
    color: #d9a175;
    margin-bottom: 1.5rem;
}

.value-card h4 {
    color: #333;
    margin-bottom: 1rem;
}

.value-card p {
    color: #555;
}

/* Team Section Styles */
.team-section {
    padding: 3rem 0;
}

.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-img-container {
    width: 250px;
    height: 250px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}


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

.team-member h4 {
    color: #333;
    margin-bottom: 0.25rem;
}

.team-member .position {
    color: #d9a175;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    color: #555;
    max-width: 300px;
    margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-text {
        padding: 15px 0;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding-top: 5rem;
    }
    
    .team-img-container {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .value-card, 
    .team-member {
        margin-bottom: 1.5rem;
    }
    
    .about-content {
        padding-top: 0.5rem;
    }
    
    .team-img-container {
        width: 120px;
        height: 120px;
    }
} 