/* styles.css */

body {
    background: #f4f4f4;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.navbar {
    background: #006699 !important;
}

.hero {
    text-align: center;
    padding: 50px 20px;
    background: #006699;
    color: white;
}

.form-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    color: black;
}

.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.custom-card {
    width: 250px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.custom-card:hover {
    transform: scale(1.05);
}

.custom-card h4 {
    margin-bottom: 10px;
}

.custom-card a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
}

.custom-card .btn-primary {
    background: #2980b9;
    color: white;
}

.custom-card .btn-danger {
    background: #c0392b;
    color: white;
}

.custom-card .btn-warning {
    background: #f39c12;
    color: white;
}

@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .custom-card {
        width: 90%;
    }
}