/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 2rem 4rem 2rem;
    margin-top: -5px;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.about-content {
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    background-color: white;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper {
    margin-bottom: 2rem;
    text-align: center;
}

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

.about-text-content {
    line-height: 1.8;
}

.about-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-leadership {
    background-color: white;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-leadership-content {
    text-align: center;
}

.about-leadership-profile {
    margin-bottom: 2rem;
}

.about-leadership-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-leadership-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-leadership-quote {
    margin: 2rem 0;
    padding: 0;
    border: none;
}

.about-leadership-quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

.about-leadership-description {
    margin: 2rem 0;
    line-height: 1.8;
}

.about-leadership-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.about-leadership-signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.about-leadership-signature-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.about-leadership-signature-title {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.about-leadership-signature-org {
    font-size: 0.95rem;
    color: #888;
}

.about-welcome {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-welcome-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.about-welcome-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-welcome-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.about-welcome-button:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

@media screen and (max-width: 768px) {
    .about-hero {
        padding: 5rem 1.5rem 3rem 1.5rem;
        margin-top: -5px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-section,
    .about-leadership,
    .about-welcome {
        padding: 2rem 1.5rem;
    }

    .about-leadership-img {
        width: 150px;
        height: 150px;
    }
}
