/* General Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #e6e1de;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #269b87;
    color: white;
    display: fixed;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 80px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-bottom: 30px;
}

header .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

header .logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

nav {
    margin-top: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #269b87;
}


/* General Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f3f1ec;
    color: #333;
    line-height: 1.6;
}


/* Background Container */

.background-container {
    background-color: white;
    /* Light background color */
    border-radius: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    padding-bottom: 20px;
}

.background-container h2 {
    margin-left: 10px;
    text-align: left;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.background-container h3 {
    text-align: center;
    font-size: 1.0rem;
    color: #333;
    margin-bottom: 10px;
}

.background-container p {
    margin-top: 1%;
    padding-left: 50px;
    text-align: left;
    font-size: 1.0rem;
    color: #333;
    margin-bottom: 10px;
}

.background-container img {
    display: block;
    width: 100%;
    /* Adjust as needed */
    height: auto;
}

.background-container1 {
    background-color: white;
    /* Light background color */
    padding: 20px 20px;
    border-radius: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.background-container1 h2 {
    text-align: left;
    font-size: 1.5rem;
    color: #333;
}

.background-container1 h3 {
    text-align: left;
    font-size: 1.0rem;
    color: #333;
}

.background-container1 a {
    font-size: 1.0rem;
    text-align: left;
}

.background-container1 .card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}


/* Section Styles */

section {
    padding: 10px 20px;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

section img {
    width: 100%;
    height: 100px;
    object-fit: fill;
}

section {
    padding: 20px;
}

section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #007bff;
}

section h3 a {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #007bff;
}

section p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
    text-align: left;
}


/* Footer */

footer {
    margin-top: 20px;
    background-color: #083f88;
    color: #ffff;
    text-align: center;
    padding: 20px;
    position: relative;
}

footer p {
    font-size: 1rem;
    margin: 0;
}


/* Responsive Design */

@media (max-width: 768px) {
    header .logo-container {
        flex-direction: fixed;
    }
    .card-container {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    .card img {
        height: 150px;
    }
    .popup {
        width: 90%;
    }
}