body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

header {
    background-color: #343a40;
}

header h1 {
    margin: 0;
}

.tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: #ccc;
}

.nav-link {
    color: #ffffff !important;
    font-weight: bold;
}

section {
    margin-top: 20px;
}

.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

footer {
    background-color: #343a40;
}

footer p {
    margin: 0;
}

form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form .form-control {
    border-radius: 5px;
}

form button {
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    color: #ffffff;
}