/* About Page Styles */
.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-small {
    text-align: center;
    padding: 6rem 0;
    background: var(--primary-light);
    margin-top: 5rem;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f8f3f3;
}

.hero-small h1 {
    font-size: 3rem;
    color: rgb(223, 60, 60);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgb(223, 60, 60);
    font-weight: 500;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-text {
    padding: 2rem;
}

.about-text h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.values-section {
    text-align: center;
    padding: 4rem 0;
}

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

.value-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-item h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.team-section {
    padding: 4rem 0;
    text-align: center;
}

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

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

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

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

.executive-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.executive-member:hover {
    transform: translateY(-5px);
}

.executive-member img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--primary);
}

.executive-member h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.executive-member .position {
    color: var(--secondary);
    font-weight: 500;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .executives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .executives-grid {
        grid-template-columns: 1fr;
    }
}

.managers-section {
    padding: 4rem 0;
    text-align: center;
}

.manager-hours {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.managers-grid {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.location-group {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.location-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.manager-name {
    color: var(--secondary);
    font-weight: 500;
}

@media (max-width: 968px) {
    .managers-grid {
        flex-direction: column;
    }
    
    .location-group {
        width: 100%;
    }
}
