<style>
.support-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.support-card {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #222;
    transition: 0.2s ease;
}

.support-card:hover {
    border-color: #444;
    transform: translateY(-3px);
}

.support-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.support-card p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.support-card .btn {
    width: 100%;
    text-align: center;
    padding: 12px;
}

.support-form {
    background: #111;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #222;
    margin-top: 50px;
}

.support-form h2 {
    color: #fff;
    margin-bottom: 10px;
}

.support-form p {
    color: #aaa;
    margin-bottom: 25px;
}

.support-form label {
    display: block;
    color: #ccc;
    margin-bottom: 6px;
    font-size: 14px;
}

.support-form input,
.support-form textarea,
.support-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #0d0d0d;
    color: #fff;
}

.support-form textarea {
    height: 120px;
    resize: vertical;
}

.support-form input:focus,
.support-form textarea:focus,
.support-form select:focus {
    border-color: #555;
}

.support-form .btn {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
}
</style>