/* About Page Styles */

.about-content {
    padding: 80px 0;
    background: #fff;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.why-choose-us {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.feature-box-large {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-box-large:hover {
    transform: translateY(-5px);
}

.feature-box-large i {
    font-size: 48px;
    color: #E91E8C;
    margin-bottom: 20px;
}

.feature-box-large h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-box-large p {
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        padding: 40px 0;
    }

    .about-text h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .why-choose-us {
        padding: 40px 0;
    }

    .why-choose-us h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .feature-box-large {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .feature-box-large i {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .feature-box-large h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 14px;
    }

    .why-choose-us h2 {
        font-size: 24px;
    }

    .feature-box-large {
        padding: 25px 15px;
    }
}
