/* About Page Styles */

/* Hero Section */
.about-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero h1 span {
    color: #e74c3c;
}

/* About Content Section */
.about-content {
    padding: 80px 0;
}

.about-text-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.about-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.about-text-content p.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #222;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-text-content {
        padding: 30px 20px;
    }
    
    .about-text-content p {
        font-size: 1rem;
    }
    
    .about-text-content p.lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-content {
        padding: 60px 0;
    }
}
