body {
    background: linear-gradient(135deg, #132e80, #2989ff);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
}

.logo {
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo > img {
    width: 140px;
}

h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p.lead {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 16px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.card:hover.raised {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-25px);
}

.card-body {
    color: #f5f5f5;
}

.icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

form {
    margin-top: 2rem;
}

input[type="email"] {
    border-radius: 8px;
}

footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Navbar styling tweaks */
.navbar {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    color: #fff !important;
    font-weight: bold;
}

.nav-link {
    color: #fff;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #000 !important;
    font-weight: bold;
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 15px 15px 0;

}

.nav-item.active > a.nav-link {
    color: #000000 !important;
    font-weight: bold;
}

a[href^="tel:"] {
    color: white;
}

th.label {
    max-width: 150px;
}
.form-switch .form-check-input {

}
.form-switch .form-check-input:checked {
    background-color: #e4ab32; /* Bootstrap's 'success' green */
    border-color: #edac35; /* Match border color */
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='rgba(255,255,255,1.0)'/></svg>"); /* White knob */

}