body {
    background-color: #f8f9fa;
}

.contact-section {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.contact-form .form-control {
    border-radius: 10px;
    padding: 12px;
}

.contact-form button {
    border-radius: 10px;
    padding: 10px 25px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0d6efdcc;
}

.contact-info {
    background-color: #f1f1f1;
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
}

.contact-info i {
    color: #0d6efd;
    margin-right: 8px;
}

h1, h2 {
    text-align: center;
    font-weight: 700;
}

.alert {
    margin-top: 20px;
}

            .scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none; /* hidden by default */
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.scroll-to-top:hover {
    background-color: #0056b3;
}