body {
    font-family: 'Segoe UI', sans-serif;
}

.section-title {
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.timeline {
    position: relative;
    margin: 40px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dee2e6;
    transform: translateX(-50%);
}

.timeline-step {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-step-left {
    left: 0;
    text-align: right;
}

.timeline-step-right {
    left: 50%;
    text-align: left;
}

.timeline-step::before {
    content: attr(data-step);
    position: absolute;
    top: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #28a745;
    color: white;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    font-size: 14px;
}

.timeline-step-left::before {
    right: -15px;
}

.bg-light {
        background-color: #cce6ff !important;
    }

.timeline-step-right::before {
    left: -15px;
}

@media (max-width: 767px) {
    .timeline:before {
        left: 8px;
    }

    .timeline-step {
        width: 100%;
        padding-left: 40px;
        padding-right: 20px;
    }

    .timeline-step-left,
    .timeline-step-right {
        left: 0;
        text-align: left;
    }

    .timeline-step-left::before,
    .timeline-step-right::before {
        left: 0;
    }
}


.hero-section {
    background: #f8fbff;
    padding: 60px 0;
    text-align: center;
}

.hero-section h1 {
    font-weight: 700;
}

.hero-section p {
    margin: 10px 0;
}

.btn-custom {
    font-weight: 600;
    padding: 10px 25px;
}
.btn_secondary_custom {
    display: inline-block;
    background-color: #6c757d;  /* Bootstrap secondary gray */
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn_secondary_custom:hover {
    background-color: #5a6268;  /* Darker gray on hover */
    transform: scale(1.02);
}

.btn_secondary_custom:active {
    background-color: #545b62;  /* Even darker on active */
    transform: scale(0.98);
}

.btn_secondary_custom:disabled,
.btn_secondary_custom.disabled {
    background-color: #6c757d;
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
}

.main_form_submit {
    display: inline-block;
    background-color: #28a745;  /* Bootstrap success green */
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.main_form_submit:hover {
    background-color: #218838;  /* Darker green on hover */
    transform: scale(1.02);     /* Slight zoom effect */
    color: white;
}

.main_form_submit:active {
    background-color: #1e7e34;  /* Even darker green when clicked */
    transform: scale(0.98);     /* Press-down effect */
}

.btn_primary_custom {
    display: inline-block;
    background-color: #007bff;   /* Bootstrap primary blue */
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn_primary_custom:hover {
    background-color: #0069d9;  /* Slightly darker blue on hover */
    transform: scale(1.02);
}

.btn_primary_custom:active {
    background-color: #0056b3;  /* Even darker blue on active */
    transform: scale(0.98);
}

.btn_primary_custom:disabled,
.btn_primary_custom.disabled {
    background-color: #007bff;
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
}

.faq-item {
    text-align: left !important;
}
.faq-item h3,
.faq-item p,
.faq-item ul {
    text-align: left;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.btn-next[disabled],
.btn-back[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.error-msg {
    color: red;
    font-size: 12px;
    margin-top: 2px;
}

 .error-icon {
    font-size: 5rem;
}
