/* Main Container */
.assistance-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.assistance-container h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Issue Grid */
.assistance-section {
    margin-bottom: 4rem;
}

.assistance-section h2 {
    color: #444;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.issue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.issue-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-5px);
}

.issue-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.issue-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.issue-card li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.issue-card li::before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

.support-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: #0056b3;
}

/* Contact Support Section */
.contact-support {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
}

.contact-support h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-option {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.support-option h3 {
    color: #333;
    margin-bottom: 1rem;
}

.support-option p {
    color: #666;
    margin-bottom: 1.5rem;
}

.support-option button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-button {
    background: #28a745;
    color: white;
}

.chat-button:hover {
    background: #218838;
}

.email-button {
    background: #007bff;
    color: white;
}

.email-button:hover {
    background: #0056b3;
}

.phone-button {
    background: #6c757d;
    color: white;
}

.phone-button:hover {
    background: #5a6268;
}

/* Responsive Design */
@media (max-width: 768px) {
    .assistance-container {
        padding: 1rem;
    }

    .issue-grid {
        grid-template-columns: 1fr;
    }

    .contact-support {
        padding: 2rem 1rem;
    }

    .support-options {
        grid-template-columns: 1fr;
    }
} 