/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* About Section */
.about {
    background-color: #FFFFFF;
    padding: 100px 20px;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(180deg, #F9F9F9 0%, #FFFFFF 100%);
    z-index: 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-label {
    display: inline-block;
    color: #F4D03F;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
}

.section-title .highlight {
    color: #F4D03F;
}

.section-description {
    font-size: 1.25rem;
    color: #4A4A4A;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Mission Statement */
.mission-statement {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 60px;
    border-radius: 8px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.1) 0%, transparent 70%);
}

.mission-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.mission-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.mission-title {
    font-size: 2rem;
    color: #F4D03F;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mission-text {
    font-size: 1.125rem;
    color: #E0E0E0;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.value-card {
    background: #FAFAFA;
    padding: 40px 30px;
    border-radius: 8px;
    border-left: 4px solid #F4D03F;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:nth-child(5) { animation-delay: 0.5s; }
.value-card:nth-child(6) { animation-delay: 0.6s; }

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left-color: #DAA520;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F4D03F;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.value-title {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-description {
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.7;
}

/* Closing Statement */
.closing-statement {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #F4D03F 0%, #DAA520 100%);
    border-radius: 8px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.closing-text {
    font-size: 1.5rem;
    color: #000000;
    line-height: 1.8;
    font-weight: 500;
}

.closing-text .highlight {
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about {
        padding: 80px 20px;
    }

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

    .mission-statement {
        padding: 40px 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 60px;
    }

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

    .section-description {
        font-size: 1.125rem;
    }

    .mission-statement {
        padding: 35px 25px;
        margin-bottom: 60px;
    }

    .mission-title {
        font-size: 1.75rem;
    }

    .mission-text {
        font-size: 1rem;
    }

    .values-grid {
        margin-bottom: 60px;
    }

    .value-card {
        padding: 30px 25px;
    }

    .closing-statement {
        padding: 40px 25px;
    }

    .closing-text {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .mission-statement {
        padding: 30px 20px;
    }

    .value-card {
        padding: 25px 20px;
    }

    .value-number {
        font-size: 2rem;
    }

    .value-title {
        font-size: 1.25rem;
    }

    .closing-statement {
        padding: 30px 20px;
    }

    .closing-text {
        font-size: 1.125rem;
    }
}