/* About Page Styles */

.about-hero {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(226,140,20,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 60% 90%, rgba(0,0,0,0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0f4a3e 0%, #1a6b5a 25%, #2a9d6e 50%, #1f7a5a 75%, #154b46 100%);
    min-height: 64vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative shapes */
.about-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(226,140,20,0.08);
    pointer-events: none;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

@media (min-width: 768px) {
    .about-hero {
        min-height: 68vh;
    }
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-label {
    color: var(--imo-gold);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-hero-text {
    color: #ffffff;
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 600px;
}

.about-portrait {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.about-content-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.about-content-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.about-content-text {
    color: #000000;
    font-size: 1rem;
    line-height: 1.7;
}

.about-history-header {
    background-color: var(--imo-green);
    padding: 2rem 0;
    color: #ffffff;
}

.about-history-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.about-history-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.about-history-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.about-history-text {
    color: #000000;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

