.support-articles {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.support-desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40%;
    color: var(--gray);
}

.support-desc-img-hidden {
    display: none;
}

.support-items {
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 10px;
}

.support {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--gray);
    border: 1px solid var(--gray);
}

.support p:first-child {
    color: var(--white);
}

.heading.ask {
    margin-top: 40px;
}

.card-icon,
.bit-icon {
    display: inline-block;
}

.card-icon {
    margin-right: 10px;
}

.bit-icon {
    width: 28px;
    position: relative;
    top: 5px;
    left: -6px;
}

.h-line.ask {
    width: 240px;
}

.form {
    width: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input,
textarea {
    color: var(--gray);
    padding: 7px 10px;
    background-color: var(--background);
    border: none;
    border: 1px solid var(--gray);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary); 
}

.name-email {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.name-email input:first-child, 
.name-email input:last-child {
    width: 48%;
}

textarea {
    height: 250px;
}

.btn.ask {
    width: 120px;
}

.ask-me {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}
.ask-me-img-wrapper {
    width: 38%;
}
.ask-img-down {
    margin-top: 50px;
}

.form-message {
    position: absolute;          
    top: 0;                      
    left: 50%;                   
    transform: translateX(-50%); 
    width: 100%;                 
    text-align: center;          
    padding: 10px;               
    font-size: 14px;
    border-radius: 5px;
    display: none;               
    z-index: 100;                
    pointer-events: none;        
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
}

.form {
    position: relative;          
}
