body {
    font-family: "Open Sans", Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* background-color: #f4f4f9; */
    background-color: white;
    color: #333;
}
header {
    /* background-color: #0056b3; */
    color: black;
    padding: 10px;
    text-align: center;
}
h1 {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between logo and text */
    justify-content: center; /* Centers the content if your h1 is full width */
}

.header-logo {
    height: 80px; /* Adjust this value to match your desired logo size */
    width: auto; /* Maintains aspect ratio */
    vertical-align: middle;
}

/* If you want to adjust the text styling */
h1 span {
    font-family: "Poppins", sans-serif; /* Or whatever font you prefer */
}

nav {
    display: flex;
    justify-content: center;
    background-color: #003d80;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
nav a:hover {
    color: rgb(255, 161, 39);
    /* text-shadow: 0 0 2px rgb(255, 161, 39);
    transition: all 0.2s ease; */
}
.nav-icon {
    display: none; /* Hide icons by default */
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    nav {
        gap: 10px; /* Reduce gap on mobile */
    }

    .nav-icon {
        display: block; /* Show icons */
        font-size: 24px; /* Adjust icon size */
    }

    .nav-text {
        display: none; /* Hide text */
    }

    nav a {
        padding: 8px; /* Add some padding for touch targets */
    }
}

section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.cta {
    background-color: #0056b3;
    color: white;
    padding: 15px;
    text-align: center;
    margin: 20px 0;
}
.cta a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
footer {
    background-color: #003d80;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
.flex-container {
    display: flex;
    /* flex-wrap: nowrap; */
    justify-content: center; /* Centers the items horizontally */
    align-items: center; /* Centers the items vertically */
}
.flex-container > div {
    /* background-color: #f1f1f1; */
    max-width: 200px;
    margin: 10px;
    text-align: center;
    font-size: medium;
    padding: 6px;
}
.cert-badge {
    display: block; /* Makes the image a block element */
    margin: 0 auto; /* Centers the image horizontally */
    width: 110px; /* or whatever size you prefer */
    height: auto; /* maintains aspect ratio */
    padding: 10px;
}

/* Add media query for mobile devices */
@media screen and (max-width: 768px) {
    .flex-container {
        flex-direction: column; /* Makes items stack vertically */
        gap: 10px; /* Adds space between stacked items */
    }

    .flex-container > div {
        max-width: 100%; /* Allow items to take full width if needed */
        margin: 5px 0; /* Adjust vertical spacing between items */
        font-size: medium;
    }
    .cert-badge {
        width: 90px; /* or whatever size you prefer */
    }
}

.center-paragraph {
    display: flex;
    align-items: center;
    line-height: 1;
    padding: 3px 0;
    margin: 0;
    gap: 5px; /* Creates space between icon and text */
}
