/* style/about.css */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #0A2239;
    line-height: 1.6;
}

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

.page-about-hero {
    background: linear-gradient(135deg, #0A2239 0%, #1a3a5e 100%); /* Slightly lighter blue for contrast */
    color: #f0f0f0;
    text-align: center;
    padding: 80px 20px;
    border-bottom: 2px solid #E0B400;
}

.page-about-hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #E0B400; /* Auxiliary color for highlight */
    font-weight: bold;
    line-height: 1.2;
}

.page-about-hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    color: #cccccc;
}

.page-about-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(224, 180, 0, 0.2);
}

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

.page-about-grid-reverse {
    grid-template-areas: "image content"; /* For desktop, image on left, content on right */
}

.page-about-grid-reverse .page-about-content-block {
    grid-area: content;
}

.page-about-grid-reverse .page-about-image-block {
    grid-area: image;
}

.page-about-heading {
    font-size: 2.2em;
    color: #E0B400;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-about-heading-center {
    text-align: center;
}

.page-about-text {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.page-about-text-center {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-about-highlight {
    color: #E0B400;
    font-weight: bold;
}

.page-about-image-block {
    text-align: center;
}

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

.page-about-image-center {
    text-align: center;
    margin-top: 30px;
}

.page-about-image-large {
    max-width: 80%; /* Slightly smaller for centered image */
}

.page-about-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-about-list li {
    background-color: #1a3a5e; /* Darker blue for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #E0B400;
    border-radius: 5px;
    font-size: 1.05em;
    color: #f0f0f0;
}

.page-about-list li strong {
    color: #E0B400;
}

.page-about-cta {
    background: #E0B400;
    padding: 70px 20px;
    text-align: center;
    color: #0A2239;
}

.page-about-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-about-cta-title {
    font-size: 2.5em;
    color: #0A2239;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-about-cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #333;
}

.page-about-button {
    display: inline-block;
    background-color: #0A2239;
    color: #E0B400;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid #0A2239;
}

.page-about-button:hover {
    background-color: #E0B400;
    color: #0A2239;
    transform: translateY(-3px);
    border-color: #0A2239;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-about-grid {
        grid-template-columns: 1fr;
    }

    .page-about-grid-reverse {
        grid-template-areas: none; /* Reset grid area for mobile */
    }

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

    .page-about-heading {
        font-size: 1.8em;
    }

    .page-about-text {
        font-size: 1em;
    }

    .page-about-list li {
        padding: 12px 15px;
        font-size: 1em;
    }

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

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

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

@media (max-width: 480px) {
    .page-about-hero {
        padding: 50px 15px;
    }

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

    .page-about-section {
        padding: 40px 0;
    }

    .page-about-heading {
        font-size: 1.6em;
    }

    .page-about-image-large {
        max-width: 95%;
    }
}