body {
    font-family: 'Poppins', sans-serif;
    background: #f9fafc;
    color: #333;
}

header {
    background: linear-gradient(135deg, rgb(57, 77, 96), rgb(70, 48, 106));
    color: white;
    padding: 60px 10px;
    text-align: center;
    border-bottom-left-radius: 50% 5%;
    border-bottom-right-radius: 50% 5%;
}

header h1 {
    font-weight: 700;
    font-size: 3rem;
}

header p {
    font-size: 1.2rem;
    /* max-width: 800px; */
    margin: 20px auto 0;
}

.cards-section {
    padding: 60px 20px;
}

.card img {
    max-height: 80px;
    object-fit: contain;
    padding: 10px;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
}

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

.form-section {
    padding: 60px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

footer {
    background: #343a40;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #ffc107;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background: #007bff;
    border: none;
}

.btn-primary:hover {
    background: #0056b3;
}

#scrollToForm {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgb(57, 77, 96), rgb(70, 48, 106));
    color: white;
}