body {
    font-family: 'Montserrat', sans-serif;
    color: #139a68;
    background-color: #fffdf4;
}

.navbar {
    padding: 20px 5%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.navbar .brand img {
    height: 40px;
}

.navbar .contact-btn {
    background-color: #223a78;
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 25px;
}

.navbar .contact-btn i {
    margin-right: 6px;
}

.form-section {
    margin: 100px auto 0 auto;
    width: 80%;
    text-align: center;
}

.form-section .heading {
    font-weight: 700;
    margin-bottom: 40px;
}

.form-section .heading span {
    color: #223a78;
}

.form-section .container {
    margin-top: 40px;
}

.user-inputs {
    text-align: left;
}

.user-inputs fieldset {
    border: none;
    margin-bottom: 30px;
}

.user-inputs fieldset fieldset {
    margin-top: 20px; /* Space between nested fieldsets */
    margin-bottom: 0; /* Reset bottom margin for nested fieldsets */
}

.user-inputs legend {
    font-size: 1.5rem;
    font-weight: 600;
    color: #223a78;
    margin-bottom: 20px;
}

.user-inputs label {
    margin: 0 0 0 15px;
    color: #223a78;
    transform: translateY(12px);
    background-color: #fffdf4;
    padding: 0 4px;
}

.user-inputs input,
.user-inputs select,
.user-inputs textarea {
    background-color: #fffdf4;
    border: 1px solid #139a68;
    border-radius: 20px;
    padding-top: 10px;
}

.user-inputs input:focus,
.user-inputs select:focus,
.user-inputs textarea:focus {
    border-color: #223a78;
    box-shadow: none;
}

.ticket-type {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.ticket-type label {
    font-weight: 500;
    color: #223a78;
}

.ticket-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #223a78;
    margin-bottom: 15px;
}

.passenger,
.flight {
    background-color: #d8f2bb;
    padding: 15px;
    border-radius: 10px;
}

.btn.btn-secondary {
    background-color: #223a78;
    color: #fff;
    border-radius: 20px;
    padding: 8px 20px;
    margin-top: 10px;
}

.btn.btn-secondary:hover {
    background-color: #1a2d5e;
}

.btn.btn-success {
    background-color: #139a68;
    color: #fffdf4;
    border-radius: 20px;
    padding: 10px 30px;
    width: auto;
}

.btn.btn-success:hover {
    background-color: #0f7a50;
}

.note {
    font-size: small;
    font-style: italic;
    color: #223a78;
    margin-bottom: 15px;
}

.terms {
    font-weight: 500;
}

.terms a {
    color: #223a78;
    font-weight: 600;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

.proceed-btn-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.proceed-btn-container .proceed-btn {
    width: 200px;
}

.footer {
    margin-top: 60px;
    padding: 40px 5% 30px 5%;
    background-color: #daffd0;
}

.footer .inner .brand {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.footer .inner .brand img {
    height: 50px;
}

.footer .inner .brand .desc {
    margin-top: 6px;
}

.footer .inner .brand .desc span {
    color: #223a78;
}

.footer .inner .contacts a {
    all: unset;
    display: block;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 7px;
    color: #139a68;
}

.footer .inner .contacts a i {
    margin-right: 12px;
}

.footer .inner .bottom {
    width: 100%;
    text-align: center;
    margin-top: 25px;
}

.footer .inner .bottom a {
    all: unset;
    cursor: pointer;
    font-weight: 600;
    margin: 0 12px;
    color: #139a68;
}

.footer .inner .bottom .copyright {
    display: block;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .form-section {
        width: 90%;
    }

    .proceed-btn-container .proceed-btn {
        width: 100%;
    }

    .footer .inner .brand {
        align-items: center;
    }

    .footer .inner {
        text-align: center;
    }

    .footer .inner .contacts {
        margin-top: 30px;
    }
}