body {
    font-family: 'Arial', sans-serif;
}
.hero {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    text-align: center;
    padding: 80px 20px;
}
.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}
.btn-custom {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
}
.btn-custom:hover {
    background-color: #e68900;
}
.form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}
footer {
    background: #2575fc;
    color: white;
    padding: 20px;
    text-align: center;
}
