body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}
header {
    background: #1d1d1d;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}
.breaking-news {
    background: red;
    color: white;
    padding: 0.5rem;
    font-weight: bold;
}
.featured-story, .latest-news, .categories-preview {
    padding: 1rem;
    background: white;
    margin: 1rem;
    border-radius: 8px;
}
.story-card {
    background: #eee;
    padding: 1rem;
    border-radius: 5px;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}
.category-tile {
    background: #1d1d1d;
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 5px;
}
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}
footer .social-links a {
    color: #ddd;
    margin: 0 5px;
    text-decoration: none;
}
.page-content {
    padding: 1rem;
    background: white;
    margin: 1rem;
    border-radius: 8px;
}
.article-meta {
    font-size: 0.9rem;
    color: gray;
    margin-bottom: 1rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
    margin: auto;
}
.contact-form input, .contact-form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact-form button {
    padding: 10px;
    background: #1d1d1d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.contact-form button:hover {
    background: #333;
}


