/* General Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
    box-sizing: border-box;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

/* Page Title */
.container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #3498db;
}

.container p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

article {
    background-color: #f8faff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}

article:hover {
    transform: translateY(-10px);
}

article h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

article p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.read-more {
    display: inline-block;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.read-more:hover {
    background-color: #1d6fa5;
}

/* Footer */
.footer {
    text-align: center;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    margin-top: 40px;
}

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