body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
header {
    background-color: #cc0000; /* Feuerwehrrot */
    color: #fff;
    padding: 20px 0;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
}
nav {
    margin-top: 10px;
}
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}
nav ul li {
    display: inline;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
nav ul li a:hover {
    text-decoration: underline;
}
.breaking-news {
    background-color: #ffcc00;
    color: #000;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}
.breaking-news .marquee {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
    font-weight: bold;
    font-size: 1rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.featured {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}
.featured-article {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}
.featured-article img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    border: 5px solid #cc0000; /* Rahmen in Feuerwehrrot */
}
.featured-sidebar {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}
.sidebar-article {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    border-left: 5px solid #cc0000; /* Indikator in Feuerwehrrot */
}
.sidebar-article h3 {
    margin-top: 0;
    color: #cc0000;
}
.news-sections {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.section {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    border-top: 5px solid #cc0000; /* Kopfzeile in Feuerwehrrot */
}
.section header {
    background-color: #cc0000; /* Feuerwehrrot */
    color: #fff;
    padding: 10px;
    font-size: 1.2rem;
}
.section ul {
    list-style: none;
    margin: 0;
    padding: 10px;
}
.section ul li {
    margin-bottom: 10px;
}
.section ul li a {
    text-decoration: none;
    color: #cc0000;
}
.section ul li a:hover {
    text-decoration: underline;
}
footer {
    background-color: #222;
    color: #ccc;
    padding: 20px 0;
    margin-top: 40px;
}
footer a {
    color: #ccc;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-section {
    flex: 1 1 200px;
    margin: 10px;
}
.footer-section h4 {
    margin-bottom: 10px;
    color: #fff;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    .featured {
        grid-template-columns: 1fr;
    }
    .featured-sidebar {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
}
