/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style-type: none;
}

/* Header styles */
header {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #28a745;
}

/* Hero Section with Moving Background */
#hero {
    position: relative;
    background-image: url('3.jpg');
    background-size: cover;
    background-attachment: fixed;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    animation: moveBackground 15s linear infinite;
}

#hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}

#hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeIn 3s ease-in-out;
}

/* Article Section */
#article {
    padding: 40px;
    text-align: center;
    background-color: #fff;
}

#article h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.article-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.article-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.article-content {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.read-more {
    font-size: 1.1rem;
    background-color: #28a745;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.read-more:hover {
    background-color: #218838;
}

/* About Section */
#about {
    padding: 40px;
    background-color: #f1f1f1;
    text-align: center;
}

#about h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

#about p {
    font-size: 1.2rem;
    color: #555;
}

/* Contact Section */
form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form input, form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    padding: 10px;
    font-size: 1.2rem;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #218838;
}

/* Footer Section */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text
