
/* About Page Styles */
.about-page {
    padding-bottom: 80px;
}

.about-hero {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 42px;
    color: #333;
    font-weight: 700;
}

/* Section Styles */
.about-section {
    margin-bottom: 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #000;
    margin-top: 10px;
}

.about-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Reverse Grid for Vision */
.about-grid.reverse {
    direction: rtl; /* Simple way to swap columns visually */
}

.about-grid.reverse .about-content {
    direction: ltr; /* Reset text direction */
}

/* Values Section */
.values-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.values-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #333;
}

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

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #eee;
}

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

.value-icon {
    font-size: 40px;
    color: #000;
    margin-bottom: 25px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

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

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-grid.reverse {
        direction: ltr;
    }
}
