.container {
    max-width: 1200px;
    margin: auto;
    padding: 32px 16px;
}
.section-title {
    color: #007bff;
    font-weight: bold;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2rem;
    letter-spacing: 1px;
}
.card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,123,255,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}


.card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,123,255,0.15);
}
.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}
.card-text {
    font-size: 1rem;
    color: #444;
    margin-bottom: 12px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    font-weight: 500;
    padding: 8px 24px;
    border-radius: 5px;
    transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}
img.img-fluid {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,123,255,0.08);
}
.accordion {
    background: #f4f8fb;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,123,255,0.08);
}

.accordion-button {
    font-weight: 500;
    color: #007bff;
    background: #f4f8fb;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background: #007bff;
}
.accordion-body {
    background: #f9fbfd;
}
.form-label {
    font-weight: 500;
    color: #007bff;
}
.form-control, .form-select {
    border-radius: 6px;
    border: 1px solid #cce3fc;
    box-shadow: none;
}
.form-control:focus, .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.15);
}
.d-grid .btn {
    font-size: 1.1rem;
}
/* Modern Why Choose Us styles for services page */
.why-choose-section {
    background: linear-gradient(135deg, #e3f0ff 0%, #f0f7ff 100%);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,123,255,0.10);
    padding: 32px 24px;
    margin-bottom: 2rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.why-choose-section:hover {
    box-shadow: 0 16px 48px rgba(0,123,255,0.18);
    transform: translateY(-2px) scale(1.01);
}
.why-choose-title {
    color: #007bff;
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.choose-card {
    border-radius: 14px;
    background: #fff;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,123,255,0.08);
}
.choose-card:hover {
    box-shadow: 0 8px 32px rgba(0,123,255,0.15);
    transform: translateY(-4px) scale(1.04);
}
.choose-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e3f0ff 0%, #f0f7ff 100%);
    border-radius: 50%;
    margin: 0 auto 12px auto;
    box-shadow: 0 2px 8px rgba(0,123,255,0.08);
}
.choose-title {
    font-weight: 600;
    color: #007bff;
    margin-bottom: 4px;
    font-size: 1.08rem;
}
@media (max-width: 768px) {
    .container {
        padding: 12px 4px;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .card-title {
        font-size: 1rem;
    }     
    .why-choose-section {
        padding: 18px 8px;
        border-radius: 12px;
    }
    .why-choose-title {
        font-size: 1.15rem;
    }
    .choose-card {
        border-radius: 10px;
        padding: 1.2rem 0.6rem;
    }
    .choose-icon {
        width: 38px;
        height: 38px;
    }
    .choose-title {
        font-size: 1rem;
    }
}