/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #4a9b8e 0%, #6bb6ff 100%);
    color: white;
    padding: 4rem 0 2rem;
    text-align: center;
    margin-top: 0;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* About Content */
.about-content {
    padding: 4rem 0;
}

.content-section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.two-column {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    color: #555;
}

.text-content p {
    margin-bottom: 1.5rem;
}

/* SPEND Framework */
.spend-framework {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #4a9b8e;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.spend-framework h3 {
    color: #4a9b8e;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.spend-framework h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.spend-points {
    list-style: none;
    counter-reset: spend-counter;
    padding: 0;
}

.spend-points li {
    counter-increment: spend-counter;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

.spend-points li::before {
    content: counter(spend-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #4a9b8e 0%, #6bb6ff 100%);
    color: white;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.spend-points li strong {
    color: #4a9b8e;
    font-weight: 600;
}

/* Objectives List */
.objectives-list {
    list-style: none;
    counter-reset: obj-counter;
    padding: 0;
}

.objectives-list li {
    counter-increment: obj-counter;
    margin-bottom: 1.5rem;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.7;
    font-size: 1.05rem;
    color: #555;
}

.objectives-list li::before {
    content: counter(obj-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #4a9b8e 0%, #6bb6ff 100%);
    color: white;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Mission Section */
.mission-section {
    text-align: center;
    padding: 2rem 0;
}

.mission-image-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mission-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .mission-image-container {
        padding: 0 0.5rem;
    }

    .about-content {
        padding: 2rem 0;
    }

    .content-section {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 3rem 0 1.5rem;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }

    .mission-section {
        padding: 1rem 0;
    }
}