body {
    font-family: Arial, sans-serif;
}

header {
    border-bottom: 1px solid #ddd;
}

main h1 {
    color: #333;
}

main p {
    color: #555;
}
/* Styling untuk dropdown */
.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border: none;
    padding: 8px 0;
}

.dropdown-item {
    padding: 8px 20px;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #00a69c;
}

/* Animasi untuk dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card img {
    height: 200px;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
}

.footer {
    background-color: maroon;
    color: white;
    padding: 40px 0 20px 0;
}
.footer a {
    color: white;
    text-decoration: none;
    cursor: pointer;
}
.footer a:hover {
    color: #e0f7f6;
}
.footer-heading {
    font-weight: bold;
    margin-bottom: 15px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-brand {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}
.footer-description {
    font-size: 14px;
    margin-bottom: 20px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 30px;
}
.social-icons a {
    margin-left: 15px;
    font-size: 18px;
}