.about-hero {
    background-color: #800020;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.4rem;
    color: #DAA520;
    font-weight: 500;
}

.about-main-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-top-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.about-text-content {
    flex: 2;
    min-width: 300px;
}

.about-story h2, .about-vision h2, .about-why-different h2, .about-compliance h2 {
    color: #800020;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.text-justify {
    text-align: justify;
}

.about-image-content {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.about-img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-vision {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.differences-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.diff-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
}

.diff-card h3 {
    color: #800020;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.diff-card h3 i {
    color: #DAA520;
}

@media (max-width: 768px) {
    .about-top-wrapper {
        flex-direction: column-reverse;
    }
    .differences-grid {
        flex-direction: column;
    }
}