.about-section {
    padding: 70px 20px;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Image Grid */
.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Content */
.about-content h2 {
    font-size: 36px;
    color: #0b3c49;
    margin-bottom: 10px;
}

.subtitle {
    font-weight: 500;
    color: #444;
    margin-bottom: 20px;
}

.about-content h3 {
    font-size: 26px;
    color: #0b3c49;
    margin-bottom: 15px;
}

.description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Feature Boxes */
.about-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-box {
    width: 55px;
    height: 55px;
    background: #f7c600;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 8px;
    flex-shrink: 0;
}

.about-feature h4 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #222;
}

.about-feature p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

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