/* ========================================
   About Us Section
   ======================================== */

.about-section {
    padding: 60px 0;
}

.section-title {
    font-family: 'Russo One', sans-serif;
    font-size: 32px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 0;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: 28px;
    }
    
    .about-text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
}


