/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #001829;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #1CC88A;
    color: #fff;
    padding: 15px;
    text-align: center;
}

header h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.icon-large {
    font-size: 1.5rem; 
    width: 40px; 
    height: 40px; 
    display: inline-flex;
    align-items: center; 
    justify-content: center;
    margin-right: 8px; 
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

nav ul li {
    margin: 5px 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem; 
    display: flex; 
    align-items: center;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #004d40;
}

.centered {
    text-align: center;
    padding: 20px;
    margin: auto;
    color: white;
    max-width: 90%; /* Restrict maximum width */
}

main {
    flex: 1; /* Push footer to the bottom */
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 20px;
}

footer {
    background-color: #001829;
    color: #fff;
    text-align: center;
    padding: 10px;
}

#ssl-seal {
    text-align: center;
    margin-top: 10px; 
}

#ssl-seal img {
    width: auto;
    max-width: 100%; /* Adjust for responsiveness */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Media Queries */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.2rem;
    }

    nav ul {
        flex-direction: column; /* Stack menu items */
        align-items: center;
    }

    .icon-large {
        font-size: 1.2rem;
        width: 30px; 
        height: 30px;
    }

    nav ul li a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1rem;
    }

    nav ul li a {
        font-size: 0.8rem;
    }
}
