/* style/about.css */

.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0A1931; /* Main background color */
}

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

/* Hero Section */
.page-about__hero {
    background: linear-gradient(135deg, #0A1931, #2a3d58); /* Dark gradient for hero */
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.page-about__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #E6B325; /* Accent color for main title */
}

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

.page-about__hero-description a {
    color: #E6B325; /* Accent color for links in description */
    text-decoration: none;
    font-weight: bold;
}

.page-about__hero-description a:hover {
    text-decoration: underline;
}

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

.page-about__btn--primary {
    background-color: #E6B325; /* Accent color */
    color: #0A1931; /* Main color for text */
    border: 2px solid #E6B325;
}

.page-about__btn--primary:hover {
    background-color: #cc9900; /* Darker accent */
    color: #fff;
    border-color: #cc9900;
}

.page-about__btn--secondary {
    background-color: transparent;
    color: #E6B325; /* Accent color */
    border: 2px solid #E6B325;
}

.page-about__btn--secondary:hover {
    background-color: #E6B325;
    color: #0A1931;
}

/* Section Titles */
.page-about__section-title {
    font-size: 2.2em;
    color: #E6B325; /* Accent color */
    text-align: center;
    margin-bottom: 60px;
    padding-top: 60px;
}

/* Mission & Vision Sections */
.page-about__mission,
.page-about__vision {
    padding: 80px 0;
}

.page-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-about__grid--reverse {
    grid-template-columns: 1fr 1fr; /* Default for larger screens */
}

.page-about__grid--reverse .page-about__content-block {
    order: 2; /* Content on right */
}

.page-about__grid--reverse .page-about__image-block {
    order: 1; /* Image on left */
}


.page-about__content-block p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #ccc;
}

.page-about__content-block p a {
    color: #E6B325;
    text-decoration: none;
    font-weight: bold;
}

.page-about__content-block p a:hover {
    text-decoration: underline;
}

.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Values Section */
.page-about__values {
    background-color: #1a2a47; /* Slightly lighter dark background */
    padding: 80px 0;
    text-align: center;
}

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

.page-about__value-item {
    background-color: #0A1931; /* Main background color for cards */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #2a3d58; /* Subtle border */
}

.page-about__value-item h3 {
    color: #E6B325; /* Accent color */
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-about__value-item p {
    color: #ccc;
    font-size: 1em;
}

.page-about__value-item p a {
    color: #E6B325;
    text-decoration: none;
    font-weight: bold;
}

.page-about__value-item p a:hover {
    text-decoration: underline;
}

.page-about__value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: block;
}

/* Call to Action Section */
.page-about__cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #0A1931, #2a3d58); /* Dark gradient */
}

.page-about__cta-title {
    font-size: 2.5em;
    color: #E6B325; /* Accent color */
    margin-bottom: 25px;
}

.page-about__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #ffffff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__cta-description a {
    color: #E6B325;
    text-decoration: none;
    font-weight: bold;
}

.page-about__cta-description a:hover {
    text-decoration: underline;
}


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

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

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

    .page-about__grid {
        grid-template-columns: 1fr;
    }

    .page-about__grid--reverse .page-about__content-block,
    .page-about__grid--reverse .page-about__image-block {
        order: unset; /* Reset order for smaller screens */
    }

    .page-about__values-grid {
        grid-template-columns: 1fr;
    }

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

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

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