/* style/about.css */

.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light text for dark background */
    background-color: #1A202C; /* Main background color */
}

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

.page-about__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%); /* Dark gradient for hero */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold color for main title */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-about__subtitle {
    font-size: 1.5em;
    color: #CCCCCC;
    margin-bottom: 40px;
}

.page-about__hero-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    margin-top: 30px;
}

.page-about__section {
    padding: 60px 0;
    text-align: center;
}

.page-about__section:nth-of-type(odd) {
    background-color: #2D3748; /* Slightly lighter dark background */
}

.page-about__section:nth-of-type(even) {
    background-color: #1A202C;
}

.page-about__heading {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section headings */
    margin-bottom: 30px;
    font-weight: bold;
}

.page-about__subheading {
    font-size: 1.8em;
    color: #FFD700; /* Gold for subheadings */
    margin-bottom: 15px;
}

.page-about__text {
    font-size: 1.1em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.8;
}

.page-about__mission-vision .page-about__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-about__mission-vision .page-about__content-block {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-about__mission-vision .page-about__image {
    flex: 1;
    min-width: 300px;
    max-width: 45%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-about__values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__value-item {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.page-about__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7)); /* Gold glow */
}

.page-about__cta {
    background: #FFD700; /* Gold background for CTA */
    color: #1A202C; /* Dark text for gold background */
    padding: 80px 0;
}

.page-about__cta .page-about__heading {
    color: #1A202C;
}

.page-about__cta .page-about__text {
    color: #1A202C;
    margin-bottom: 40px;
}

.page-about__btn {
    display: inline-block;
    background-color: #1A202C; /* Dark button on gold background */
    color: #FFD700; /* Gold text on dark button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid #1A202C;
}

.page-about__btn:hover {
    background-color: #2D3748; /* Slightly lighter dark on hover */
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-about__title {
        font-size: 2.5em;
    }
    .page-about__subtitle {
        font-size: 1.2em;
    }
    .page-about__heading {
        font-size: 2em;
    }
    .page-about__subheading {
        font-size: 1.5em;
    }
    .page-about__text {
        font-size: 1em;
    }
    .page-about__mission-vision .page-about__container {
        flex-direction: column;
    }
    .page-about__mission-vision .page-about__image {
        max-width: 90%;
    }
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-about__hero {
        padding: 60px 0;
    }
    .page-about__title {
        font-size: 2em;
    }
    .page-about__subtitle {
        font-size: 1em;
    }
    .page-about__heading {
        font-size: 1.8em;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}