.support-container {
    max-width: 1110px;
    margin: 40px auto;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 12px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#support-title {
    margin-left: 30px;
    color: #2c3e50;
    margin-bottom: 10px;
    padding-top: 40px;
}

.support-image {
    display: block;
    margin: 30px auto;
    max-width: 80%;
    height: auto;
    border-radius: 8px;
}

/* FAQ Styles */
.faq-container {
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    color: #2c3e50;
    padding: 10px;
    display: flex;
    align-items: center;
}

.faq-question::before {
    content: '▶';
    margin-right: 10px;
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #666;
    line-height: 1.6;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.active .faq-answer {
    max-height: 500px;
    padding: 15px 20px;
}

/* Contact Section */
.contact-section {
    margin-top: 40px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.contact-title {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.8em;
}



.email-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #3498db;
    color: white !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
    border: 2px solid transparent;
}

.email-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    border-color: #1d6fa5;
}

.contact-text {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1.1em;
}

