/* Hero Section */
.about-hero {
    padding: 180px 6% 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    text-align: center;
}

.about-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* About Section */
.about-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 60px 6%;
    gap: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* LEFT CONTENT */
.about-left {
    width: 55%;
}

.about-left h2 {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #2274ff;
    margin-bottom: 35px;
}

.about-left p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* RIGHT IMAGE BOX */
.about-right {
    width: 45%;
}

.about-right img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.25);
    object-fit: cover;
}

/* Image Placeholder */
.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.about-image-placeholder i {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.about-image-placeholder span {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.why-choose-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.feature-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .about-hero {
        padding: 150px 5% 50px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .about-left h2 {
        margin-top: 20px;
    }

    .about-image-placeholder {
        height: 300px;
    }

    .about-image-placeholder i {
        font-size: 4rem;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-section .section-title {
        font-size: 2rem;
    }
}

@media(max-width: 576px) {
    .about-hero {
        padding: 120px 4% 40px;
    }

    .about-hero-title {
        font-size: 1.5rem;
    }

    .about-section {
        padding: 30px 4%;
    }

    .about-left h2 {
        font-size: 28px;
    }

    .about-left p {
        font-size: 15px;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-card i {
        font-size: 2.5rem;
    }
}
