.form-holder{
    display: none;
    margin: 3% auto;
    min-width: 380px;
    width: 60%;
}

.form-title-landing{
    font-size: 185%;
    font-weight: 600;
    margin: 0 auto 4% auto;
    text-align: center;
}

.form-subtitle-landing{
    color: gray;
    font-size: 90%;
    margin: -2% 0 5% 0;
    text-align: center;
}

.form-title-container{
    display: flex;
    align-items: center;
    margin-bottom: 4%;
}

.form-title{
    font-size: 185%;
    font-weight: 600;
    margin: 0;
}

.form-subtitle{
    color: gray;
    font-size: 90%;
    margin: -2% 0 3% 0;
}

.next-holder{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 5px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    font-weight: 600;
}

.next-arrow{
    width: 12px;
}

.faq-holder {
    padding: 22px 5px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.faq-title-holder{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-btn{
    width: 12px;
    margin-right: 5px;
    transition-duration: 0.3s;
}

.faq-question {
    font-weight: 600;
    padding-right: 10px;
}

.faq-answer {
    display: none;
    margin-top: 2%;
    font-weight: 300;
    font-size: 95%;
}

.contact-btn{
    text-decoration: underline;
    cursor: pointer;
}

.contact-btn-lg{
    box-shadow: none !important;
    border: 1px solid var(--black) !important;
    padding: 15px;
    margin-top: 5%;
}

.form{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
}

.input{
    width: calc(100% - 10px);
    margin-bottom: 2%;
}

.textarea{
    min-height: 140px !important;
}

.submit{
    background-color: var(--black);
    color: white;
    width: 100%;
    padding: 15px;
}

.warning-banner{
    margin: 3% auto;
    min-width: 380px;
    width: calc(60% - 24px);
    border-radius: 8px;
    padding: 12px;
    background-color: #fdf2f8;
    border: 1px solid #fce7f3;
    color: #be185d;
    text-align: center;
    font-size: 90%;
}

/* Support Options Grid */
.support-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 650px;
    margin: 0 auto;
}

.support-option-card {
    display: block;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 32px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.support-option-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #fce7f3;
    transform: translateY(-2px);
}

.support-option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.support-icon-container {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.knowledge-base-icon {
    background-color: #fdf2f8;
    color: #be185d;
}

.submit-ticket-icon {
    background-color: #eff6ff;
    color: #2563eb;
}

.support-option-card:hover .knowledge-base-icon {
    background-color: #fce7f3;
}

.support-option-card:hover .submit-ticket-icon {
    background-color: #dbeafe;
}

.support-option-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--black, #000);
}

.support-option-description {
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
    margin: 0;
}

.support-back-btn{
    display: flex;
    align-items: center;
    border: 1px solid var(--black);
    border-radius: 10px;
    padding: 6px 10px;
    height: 20px;
    cursor: pointer;
    background-color: white;
    margin-right: 15px;
}

.support-back-arrow{
    transform: rotateZ(180deg);
    width: 13px;
}


@media only screen and (max-width: 800px) {
    .form-holder {
        width: 92%;
        min-width: initial;
        margin: 8% auto 0 auto;
    }

    .form-title {
        font-size: 160%;
    }

    .form-subtitle {
        margin: -1% 0 4% 0;
    }
    
    .form-title-landing {
        font-size: 160%;
    }

    .form-subtitle-landing {
        margin: -1% 0 4% 0;
    }

    .faq-holder {
        padding: 27px 5px;
    }

    .input{
        margin-bottom: 4%;
    }

    .warning-banner{
        width: calc(92% - 24px);
        min-width: initial;
        margin: 3% auto 5% auto;
    }

    .support-options-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 0 auto;
        width: 90%;
    }

    .support-option-card {
        padding: 24px;
    }

    .support-icon-container {
        width: 48px;
        height: 48px;
    }

    .support-option-title {
        font-size: 16px;
    }

    .support-option-description {
        font-size: 13px;
    }
}