.select-form-control {
    border-radius: var(--bs-border-radius-lg) !important;
}

.not-required {
    color: #8d9ba5 !important
}

body {
    background-color: #f8f9fa;
}

.jumbotron {
    display: none;
}

.card {
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-header {
    background-color: #3498db;
    color: #ffffff;
    font-weight: bold;
    padding: 1.5rem;
    text-align: center;
    border-radius: 12px 12px 0 0;
}

.btn-primary,
.btn-secondary,
.btn-info {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background-color: #e74c3c;
    border-color: #e74c3c;
}

.btn-primary:hover {
    background-color: #c0392b;
    box-shadow: 0 6px 12px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    background-color: #3498db;
    border-color: #3498db;
}

.btn-info {
    background-color: #27ae60;
    border-color: #27ae60;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.testimonial {
    background-color: #ecf0f1;
    border-left: 5px solid #3498db;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 2px solid #f39c12;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #3498db;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: #ffffff;
    border: 4px solid #3498db;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid #3498db;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #3498db;
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid #3498db;
    border-width: 10px 10px 10px 0;
    border-color: transparent #3498db transparent transparent;
}

.right::after {
    left: -16px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: #ecf0f1;
    position: relative;
    border-radius: 6px;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    font-weight: bold;
    cursor: pointer;
    padding: 1rem;
    background-color: #ecf0f1;
    border-radius: 5px;
}

.faq-answer {
    padding: 1rem;
    display: none;
}