/* Utility class for centering any image */
.center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
/* FAQ accordion active button color override */
.accordion-button:not(.collapsed) {
    background-color: #014b3a !important;
    color: #fff !important;
    box-shadow: none;
}
.accordion-button:focus {
    border-color: #b08855 !important;
    box-shadow: 0 0 0 0.2rem rgba(1,75,58,0.15) !important;
}
/* Button color override for Bootstrap primary */
.btn-primary {
    background-color: #014b3a !important;
    border-color: #014b3a !important;
    color: #fff !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #b08855 !important;
    border-color: #b08855 !important;
    color: #fff !important;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
    margin: 0;
    padding: 0;
}
header {
    background: #001f3f;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}
nav ul {
    list-style: none;
    padding: 0;
    header {
        background: #014b3a;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    footer {
        background: #014b3a;
    justify-content: center;
}
nav ul li {
    margin: 0 1rem;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
            display: block;
            margin-left: auto;
            margin-right: auto;
        border: 2px solid #b08855;
    }
    transition: color 0.2s;
}
        border-color: #014b3a;
nav ul li a:hover {
    color: #ff9800;
}
main {
    max-width: 1200px;
    margin: 2rem auto;
    nav ul li a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    padding: 0 1rem;
}
section {
    nav ul li a:hover {
        color: #b08855;
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 2rem;
        color: #b08855;
    }
}
.academy-list, .mentors-list, .testimonials-list {
        color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.academy-card, .mentor-card, .testimonial-card {
        border-radius: 8px;
        border: 2px solid #b08855;
        background: #fff;
    background: #f1f1f1;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(108,117,125,0.08);
    padding: 1.5rem;
        background-color: #014b3a;
        border-color: #014b3a;
    width: 260px;
    text-align: center;
    transition: box-shadow 0.2s;
}
        color: #fff;
.academy-card:hover, .mentor-card:hover, .testimonial-card:hover {
    box-shadow: 0 4px 16px rgba(108,117,125,0.15);
}
.academy-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}
footer {
    background: #014b3a;
    border-top: 6px solid #b08855;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0 1rem 0;
    margin-top: 2rem;
    box-shadow: 0 -2px 8px rgba(1,75,58,0.08);
}
.footer-links a {
    color: #fafaf9;
    text-decoration: none;
    margin: 0 0.5rem;
}
.footer-links a:hover {
    text-decoration: underline;
}
@media (max-width: 800px) {
    .academy-list, .mentors-list, .testimonials-list {
        flex-direction: column;
        align-items: center;
    }
    main {
        padding: 0 0.5rem;
    }
}
