body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

header {
    background-color: #1e3a8a;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav a.active {
    background-color: #f97316;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('placeholder.img');
    background-size: cover;
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #f97316;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 1rem;
}

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

.article {
    background: white;
    border-radius: 5px;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.ad-banner {
    text-align: center;
    padding: 1rem;
    background: #e5e7eb;
    margin: 1rem;
}

.tag-cloud {
    text-align: center;
    padding: 1rem;
    background: #f3f4f6;
}

.tag-cloud a {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    background: #1e3a8a;
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-size: 0.9rem;
}

#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 1rem;
    text-align: center;
    z-index: 1000;
}

#cookie-consent button {
    background: #f97316;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    cursor: pointer;
}

footer {
    background: #1e3a8a;
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}
