/* style/about.css */
.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E5E5E5; /* Light grey for text on dark background */
    background-color: #1A1A1A;
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-about__hero {
    background: linear-gradient(135deg, #FFD700, #1A1A1A);
    color: #1A1A1A; /* Dark text on gold/dark gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: page-about__ripple 15s infinite ease-out;
}

.page-about__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    animation: page-about__ripple 10s infinite reverse ease-in;
}

@keyframes page-about__ripple {
    0% { transform: scale(0.5) translate(0, 0); opacity: 0.7; }
    50% { transform: scale(1.2) translate(50px, -50px); opacity: 0.3; }
    100% { transform: scale(0.5) translate(0, 0); opacity: 0.7; }
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #1A1A1A;
}

.page-about__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    margin: 10px;
}

.page-about__btn--primary {
    background-color: #1A1A1A;
    color: #FFD700;
    border: 2px solid #1A1A1A;
}

.page-about__btn--primary:hover {
    background-color: #333;
    color: #FFD700;
    transform: translateY(-3px);
}

.page-about__btn--secondary {
    background-color: #FFD700;
    color: #1A1A1A;
    border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: #b39700;
    color: #1A1A1A;
    transform: translateY(-3px);
}

.page-about__btn--tertiary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-about__btn--tertiary:hover {
    background-color: #FFD700;
    color: #1A1A1A;
    transform: translateY(-3px);
}

.page-about__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 60px;
    padding-top: 60px;
    position: relative;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-about__mission-vision, .page-about__values, .page-about__cta {
    padding: 80px 0;
    background-color: #1A1A1A;
}

.page-about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.page-about__card {
    background-color: #2A2A2A;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3A3A3A;
}

.page-about__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-about__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-about__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-about__card-text {
    font-size: 1.1em;
    color: #CCCCCC;
}

.page-about__grid--values {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-about__value-item {
    background-color: #2A2A2A;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    border: 1px solid #3A3A3A;
}

.page-about__value-item:hover {
    background-color: #3A3A3A;
}

.page-about__value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
}

.page-about__value-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-about__value-description {
    font-size: 1em;
    color: #CCCCCC;
}

.page-about__cta {
    background-color: #2A2A2A;
    text-align: center;
    padding: 100px 0;
}

.page-about__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 25px;
}

.page-about__cta-description {
    font-size: 1.2em;
    color: #CCCCCC;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-about .highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-about__hero-title {
        font-size: 2.5em;
    }

    .page-about__hero-description {
        font-size: 1em;
    }

    .page-about__section-title {
        font-size: 2em;
    }

    .page-about__card-title {
        font-size: 1.5em;
    }

    .page-about__card-text {
        font-size: 0.95em;
    }

    .page-about__cta-title {
        font-size: 2.2em;
    }

    .page-about__cta-description {
        font-size: 1em;
    }

    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-about__hero, .page-about__mission-vision, .page-about__values, .page-about__cta {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 2em;
    }

    .page-about__section-title {
        font-size: 1.8em;
    }

    .page-about__cta-title {
        font-size: 1.8em;
    }

    .page-about__btn {
        display: block;
        width: fit-content;
        margin: 15px auto;
    }
}