/* style/about.css */

/* General styles for the about page content */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #333; /* Default text color, ensure contrast */
    line-height: 1.6;
    background-color: #f8f8f8; /* Light background for readability */
}

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

.page-about-hero {
    background: linear-gradient(135deg, #0A2463 0%, #0A2463 70%, #FFD700 100%); /* Main color with a hint of aux */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Auxiliary color for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about-subtitle {
    font-size: 1.5em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-about-hero-image {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

.page-about-section {
    padding: 60px 0;
    text-align: center;
    background-color: #fff; /* White background for sections */
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-about-section:nth-child(odd) {
    background-color: #f0f4f7; /* Slightly different background for alternating sections */
}

.page-about-section-title {
    font-size: 2.5em;
    color: #0A2463; /* Main color for section titles */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-about-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Auxiliary color for underline */
    border-radius: 2px;
}

.page-about-text {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: justify;
}

.page-about-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-about-value-item {
    background-color: #0A2463;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.page-about-value-item .page-about-text {
    color: #e0e0e0;
    font-size: 1em;
    text-align: left;
    margin: 0;
}

.page-about-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.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, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-about-btn-primary {
    background-color: #FFD700;
    color: #0A2463;
}

.page-about-btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-about-btn-secondary {
    background-color: #0A2463;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-about-btn-secondary:hover {
    background-color: #071c4a;
    color: #fff;
    transform: translateY(-3px);
}

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

    .page-about-subtitle {
        font-size: 1.2em;
    }

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

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

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

    .page-about-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-about-hero {
        padding: 60px 0;
    }
    .page-about-title {
        font-size: 2em;
    }
    .page-about-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-about-section {
        padding: 40px 0;
    }
    .page-about-section-title {
        font-size: 1.8em;
    }
}