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


body {
    background-color: #dddddd5b;
    color: #000000;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

nav {
    background-color: #1d2866;
    padding: 1rem 0;
    position: fixed; 
    top: 0;
    width: 100%;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: rgb(214, 214, 214);
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #21468a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 3rem;
    background-color: rgba(123, 115, 138, 0.288);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(13, 26, 211, 0.897);
}

h1, h2, h3 {
    color: #0056c7;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    border-bottom: 2px solid #164dc5;
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.image-container {
    margin: 2rem 0;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 3, 185, 0.2);
}

.image-caption {
    font-style: italic;
    margin-top: 0.5rem;
    color: #666;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 2rem 0;
}

.stat-item {
    background-color: #495a723f;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 1rem;
    flex: 1 1 200px;
    box-shadow: 0 2px 5px rgba(22, 7, 155, 0.925);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2a5298;
}

.quote {
    font-style: italic;
    background-color: #f0f7ff;
    padding: 1.5rem;
    border-left: 5px solid #2a5298;
    margin: 2rem 0;
}

.resources {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.resource-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(56, 3, 117, 0.1);
    transition: transform 0.3s;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-img {
    height: 200px;
    overflow: hidden;
}

.resource-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resource-content {
    padding: 1.5rem;
}

footer {
    background-color: #1e3c72;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    background-color: #2a5298;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #cbd0d8;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
}
