
.support-header {
    background: linear-gradient(to right, #1c1e26, #0b101d);
    padding: 40px 20px;
    text-align: center;
    color: white;
    border-radius: 10px;
    margin: 20px;
}

.support-header h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.support-header input {
    padding: 12px;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
}

.support-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px;
}

.support-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex: 1 1 300px;
    max-width: 500px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.option {
    text-align: center;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.option span {
    font-size: 1.8rem;
}

.empty-box {
    height: 150px;
    border: 2px dashed #ddd;
    margin-top: 20px;
    border-radius: 8px;
}

.support-footer {
    background-color: #1c1e26;
    text-align: center;
    color: white;
    padding: 40px 20px;
    margin-top: 40px;
}

.support-footer h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.support-footer p {
    margin-bottom: 20px;
}

.support-footer button {
    background-color: #f78b4f;
    color: white;
    padding: 12px 24px;
    border: none;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
}