/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General body styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Container for the main content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background-color: #333;
    padding: 20px 0;
    text-align: center;
}

header nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}

header nav ul li a:hover {
    color: #ff6347;
}

/* Hero Section */
.hero {
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 80px 0;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ff6347;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #ff4500;
}

/* Articles Section */
.articles {
    margin-bottom: 40px;
}

.articles h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.article-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.article-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.article-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.article-item a {
    color: #ff6347;
    text-decoration: none;
}

.article-item a:hover {
    text-decoration: underline;
}

/* Resources Section */
.resources {
    background-color: #f9f9f9;
    padding: 40px 0;
    margin-bottom: 40px;
}

.resources h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.resource-list ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.resource-list li {
    margin: 10px 0;
}

.resource-list a {
    color: #333;
    font-size: 1.1rem;
    text-decoration: none;
}

.resource-list a:hover {
    color: #ff6347;
}

/* About Section */
.about {
    background-color: #fff;
    padding: 40px 20px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    background-color: #f9f9f9;
    padding: 40px 20px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact h2 {
    font-size
