:root {
    --primary-purple: #7B68C5;
    --light-purple: #E8E4F3;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    background-color: white;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-height: 50px;
    width: auto;
}

.header-phone {
    color: #212529;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    /*margin-right: 1rem;*/
}

.header-phone:hover {
    color: var(--primary-purple);
}

.btn-contact {
    background-color: white;
    color: #212529;
    border: 2px solid #212529;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-right: 1rem;
    display: inline-block;
}

.btn-contact:hover {
    background-color: #f8f9fa;
    color: #212529;
}

.btn-get-started {
    background-color: #1a2332;
    color: white;
    border: 2px solid #1a2332;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.btn-get-started:hover {
    background-color: #2a3442;
    color: white;
}

.navbar-actions {
    display: flex;
    align-items: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--light-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    color: var(--primary-purple);
    font-size: 24px;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.feature-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #212529;
}

.form-container {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.footer-section {
    background-color: white;
    padding: 3rem 0;
}

.footer-logo {
    max-height: 43px;
    width: auto;
    margin-bottom: 2rem;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #5d5d5d;
    margin-bottom: 1.5rem;
}

.copyright {
    font-size: 14px;
    color: #5d5d5d;
    text-align: left;
}

.divider {
    border-bottom: 1px solid #ddd;
    margin-bottom: 2rem;
}

iframe {
    border: 0;
    width: 100%;
    min-height: 504px;
}

.form-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #212529;
}

.form-title-2 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #212529;
}

.form-section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #212529;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #212529;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: var(--primary-purple);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(123, 104, 197, 0.25);
}

.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: white;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-select:focus {
    border-color: var(--primary-purple);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(123, 104, 197, 0.25);
}

.input-with-prefix {
    display: flex;
    align-items: center;
}

.input-prefix {
    padding: 0.75rem 0.75rem 0.75rem 1rem;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: #495057;
    font-size: 16px;
}

.input-with-prefix .form-control {
    border-radius: 0 4px 4px 0;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-purple);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #6a57b3;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: #6c757d;
    margin-top: 0.5rem;
}

.form-consent {
    font-size: 12px;
    color: #6c757d;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.6;
}

.form-consent a {
    color: var(--primary-purple);
    text-decoration: none;
}

.form-consent a:hover {
    text-decoration: underline;
}

.info-tooltip {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #6c757d;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
    margin-left: 0.5rem;
    cursor: help;
}

@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 1rem;
    }

    .form-container {
        padding: 1rem;
    }

    .navbar-actions {
        flex-direction: column;
        align-items: flex-end;
        gap: 0.5rem;
    }

    .header-phone {
        margin-right: 0;
        font-size: 1.25rem;
    }

    .btn-contact, .btn-get-started {
        padding: 0.4rem 1rem;
        font-size: 14px;
    }

    .btn-contact {
        margin-right: 0;
    }

    .trust-badges {
        width: 100% !important;
    }

    .trust-text {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar-actions {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .form-title-2 {
        font-size: 25px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 2rem;
        color: #212529;
    }

    .trust-badges {
        width: 100% !important;
    }

    .trust-text {
        font-size: 20px;
    }
}

.text-purple {
    color: #7B68C5
}

.fs-20 {
    font-size: 22px;
}

.form-error {
    color: darkred;
    font-weight: 600;
    font-size: 15px;
}

.form-error-large {
    color: darkred;
    font-weight: 600;
    font-size: 20px;
}

.trust-badges {
    width: 65%;
}


.divider {
    width: 1px;
    height: 60px;
    background-color: #ccc;
}

@media (max-width: 767px) {
    .trust-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .divider {
        width: 85px;
        height: 1px;
        background-color: #ccc;
    }

    #second-item {
        margin-top: -30px;
    }

    #third-item {
        margin-top: -30px;
    }
}
