/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f1f1;
    color: #333;
}

header {
    background-color: #007bff;
    color: #f5f1f1;
    text-align: center;
    padding: 20px;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
}

header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.main-content {
    padding: 20px;
}

/* Introduction Section */
.intro h2 {
    color: #007bff;
}

.intro ul {
    list-style-type: disc;
    margin: 10px 0 20px 20px;
}

/* Election Details */
.election-details {
    text-align: center;
    margin-bottom: 40px;
}

.election-details h2 {
    color: #007bff;
}

.election-details p {
    font-size: 1.1rem;
}

.election-details .btn-primary {
    background-color: #007bff;
    color: #f5f1f1;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.election-details .btn-primary:hover {
    background-color: #0056b3;
}

/* Roles Section */
.roles h2 {
    color: #007bff;
    text-align: center;
}

.role-card {
    background-color: #f5f1f1;
    border: 1px solid #007bff;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.role-card h3 {
    margin: 0;
    color: #007bff;
}

.role-card .candidates {
    margin-top: 10px;
}

.role-card ul {
    list-style: circle;
    padding-left: 20px;
}

/* Contact Section */
.contact {
    text-align: center;
    margin-top: 20px;
}

.contact h2 {
    color: #007bff;
}

.contact ul {
    list-style: none;
    padding: 0;
}

.contact ul li {
    margin: 5px 0;
}

/* Footer */
footer {
    background-color: #007bff;
    color: #f5f1f1;
    text-align: center;
    padding: 15px 0;
}

footer p {
    margin: 5px 0;
}
/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
