/* style/about-awards-certifications.css */

/* Variables for colors and fonts - use within the scoped classes */
:root {
    --page-awards-primary-color: #1A237E; /* Deep Indigo */
    --page-awards-accent-color: #FFD700;  /* Bright Gold */
    --page-awards-text-dark: #1A237E;
    --page-awards-text-light: #FFFFFF;
    --page-awards-background-light: #F8F9FA; /* Light gray for contrast */
}

.page-about-awards-certifications {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-awards-text-dark); /* Default text color */
    background-color: var(--page-awards-background-light);
}

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

.page-about-awards-certifications__hero {
    background: linear-gradient(135deg, var(--page-awards-primary-color), var(--page-awards-primary-color) 70%, var(--page-awards-accent-color));
    color: var(--page-awards-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--page-awards-accent-color);
}

.page-about-awards-certifications__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-awards-text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about-awards-certifications__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-about-awards-certifications__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

.page-about-awards-certifications__section {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.page-about-awards-certifications__section:last-of-type {
    border-bottom: none;
}

.page-about-awards-certifications__section-title {
    font-size: 2.5em;
    color: var(--page-awards-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-about-awards-certifications__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 80px;
    height: 4px;
    background-color: var(--page-awards-accent-color);
    border-radius: 2px;
}

.page-about-awards-certifications__section-title.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.page-about-awards-certifications__intro-text p {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 15px;
    color: #333; /* Slightly darker for main text */
}

.page-about-awards-certifications__intro-text strong {
    color: var(--page-awards-primary-color);
}

.page-about-awards-certifications__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-about-awards-certifications__license-item,
.page-about-awards-certifications__audit-item,
.page-about-awards-certifications__award-item {
    background-color: var(--page-awards-text-light);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-awards-certifications__license-item:hover,
.page-about-awards-certifications__audit-item:hover,
.page-about-awards-certifications__award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-about-awards-certifications__license-title,
.page-about-awards-certifications__audit-title,
.page-about-awards-certifications__award-title {
    font-size: 1.6em;
    color: var(--page-awards-primary-color);
    margin-bottom: 15px;
}

.page-about-awards-certifications__licenses p,
.page-about-awards-certifications__audits p,
.page-about-awards-certifications__awards p {
    font-size: 1em;
    color: #555;
}

.page-about-awards-certifications__image-full-width {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-about-awards-certifications__image-center {
    display: block;
    margin: 40px auto 0;
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

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

.page-about-awards-certifications__list li {
    background-color: var(--page-awards-text-light);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid var(--page-awards-accent-color);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #333;
}

.page-about-awards-certifications__list li strong {
    color: var(--page-awards-primary-color);
}

.page-about-awards-certifications__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-about-awards-certifications__conclusion p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #333;
}

.page-about-awards-certifications__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-about-awards-certifications__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-about-awards-certifications__btn--primary {
    background-color: var(--page-awards-primary-color);
    color: var(--page-awards-text-light);
    box-shadow: 0 4px 10px rgba(26, 35, 126, 0.4);
}

.page-about-awards-certifications__btn--primary:hover {
    background-color: #2b38a0; /* Slightly lighter primary */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 35, 126, 0.5);
}

.page-about-awards-certifications__btn--secondary {
    background-color: var(--page-awards-accent-color);
    color: var(--page-awards-primary-color); /* Dark text on gold */
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-about-awards-certifications__btn--secondary:hover {
    background-color: #ffe54c; /* Slightly lighter gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.5);
}

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

    .page-about-awards-certifications__hero-subtitle {
        font-size: 1em;
    }

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

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

    .page-about-awards-certifications__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-about-awards-certifications__btn {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-about-awards-certifications__hero {
        padding: 60px 0;
    }

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

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

    .page-about-awards-certifications__section-title {
        font-size: 1.8em;
    }
    
    .page-about-awards-certifications__image-center {
        max-width: 95%;
    }
    
    .page-about-awards-certifications__btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
    }
}