/* style.css */
/* This file remains largely the same as it contains only CSS. */

body {
    background: linear-gradient(135deg, #f0f4fd 0%, #d9e7ff 100%);
    min-height: 100vh;
}

/* Section backgrounds */
section {
    background: rgba(255,255,255,0.7);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,30,80,0.06);
    padding: 2.5rem 1.5rem;
    margin-bottom: 2.5rem;
}

.card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(10,60,130,0.09), 0 1.5px 12px rgba(0,0,0,0.02);
    border: none;
}
.card-header {
    border-radius: 18px 18px 0 0;
    font-weight: 600;
    font-size: 1.13rem;
}
.card-body {
    border-radius: 0 0 18px 18px;
}
.card.shadow-sm {
    box-shadow: 0 4px 16px rgba(44, 121, 255, 0.09);
}
.modal-content {
    border-radius: 20px;
    box-shadow: 0 4px 32px rgba(44,121,255,0.10);
    background: #f8fbff;
}
.navbar, footer {
    box-shadow: 0 2px 8px rgba(44, 121, 255, 0.07);
}
footer.bg-dark {
    background: rgba(20, 25, 45, 0.97) !important;
}
@media (max-width: 767px) {
    section {
        padding: 1.2rem 0.5rem;
    }
}
