.about-section {
    padding: 100px 0;
    background-color: #FFFFFF;
    position: relative;
    z-index: 10;
}

.about-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left: Image Grid */
.about-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.about-images-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

/* Right: Text Content */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-badge {
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark, #1E293B);
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-main-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 32px;
}

.about-feature {
    margin-bottom: 24px;
}

.about-feature h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark, #1E293B);
    margin-bottom: 8px;
}

.about-feature p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

.btn-about {
    background-color: var(--color-cyan, #07B8A6);
    color: #FFFFFF;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    margin-top: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-about:hover {
    background-color: #059688;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-img-top {
        height: 400px;
    }
    
    .about-img-bottom-left,
    .about-img-bottom-right {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .about-img-top {
        height: 250px;
    }
    
    .about-images-bottom {
        grid-template-columns: 1fr;
    }
    
    .about-img-bottom-left,
    .about-img-bottom-right {
        height: 250px;
    }
}
