/* assets/css/styles.css */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f0f2f5;
    color: #333;
}
.content {
    flex: 1;
}
.footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 10px 0;
}
.navbar {
    margin-bottom: 20px;
    background-color: #343a40;
    color: white;
    padding: 0 20px;
}
.navbar-brand {
    color: white;
}
.header {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 40px;
    border-radius: 10px;
}
.header h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: bold;
}
.header p {
    font-size: 1.5rem;
}
.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.card-body {
    padding: 20px;
}
.card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #007bff;
}
.btn-primary {
    background-color: #007bff;
    border: none;
    transition: background-color 0.3s;
}
.btn-primary:hover {
    background-color: #0056b3;
}

