﻿h1 {
    text-align: center;
    justify-content: center;
    text-decoration: underline;
    margin-top: 10px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    margin-bottom: 10px !important;
}

li {
    margin-bottom: 5px;
    font-size: 16px;
}

/* Layout containers */
.container {
    width: 85%;
    height: auto;
    margin: 0 auto;
}

.container2 {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.container2 em {
    font-weight: bold;
}

/* Utilities extracted from inline styles */
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.m-auto { margin: auto; }
.mr-3 { margin-right: 3px; }
.m-0 { margin: 0 !important; }
.text-center { text-align: center; }

/* Images */
img {
    max-width: 100%;
    height: auto;
}

.logo-main {
    width: 300px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.cert-logos {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 12px;
}

.cert-logos img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .container2 {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    /* Slightly reduce text sizes on small screens for readability */
    p { font-size: 16px; }
    li { font-size: 15px; }

    /* Stack columns naturally; remove tiny right margin used on desktop */
    .mr-3 { margin-right: 0; }

    /* Smaller certification logos on phones */
    .cert-logos img {
        width: 60px;
        height: 60px;
    }
}
