/* General */
body {
    font-family: 'Arial', sans-serif;
}

/* Navbar */
.navbar-brand {
    font-weight: bold;
    font-size: 24px;
    color: #ff9900;
}

/* Banner */
.banner {
    background-color: #65a7e8;
}

.banner h1 {
    font-size: 3rem;
    font-weight: bold;
}

/* Cards */
.card {
    border-radius: 15px;
    overflow: hidden;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-weight: bold;
}

.date-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff9900;
    padding: 10px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
}

/* Newsletter */
.newsletter {
    background-image: url('newsletter-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* Footer */
.footer {
    background-color: #1c1c1c;
    color: white;
}

.footer h5 {
    font-weight: bold;
}

.footer ul {
    padding-left: 0;
}

.footer ul li {
    list-style: none;
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ff9900;
    text-decoration: none;
}

.footer ul li a:hover {
    text-decoration: underline;
}
