/* General Styles for the Support Section */
.support-section {
    padding: 40px 20px;
}

.support-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-text {
    flex: 1;
    color: white;
    text-align: left;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

.support-text h2 {
    font-size: 2.5rem;
    color: #A79AFF;
    margin-bottom: 20px;
}

.support-text p {
    margin-bottom: 15px;
}

.discord-widget {
    flex: 0 0 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .support-container {
        flex-direction: column;
        align-items: center;
    }

    .discord-widget {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .support-text h2 {
        font-size: 2rem;
    }

    .support-text p {
        font-size: 0.95rem;
    }

    .discord-widget iframe {
        width: 300px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .support-text h2 {
        font-size: 1.8rem;
    }

    .support-text p {
        font-size: 0.85rem;
    }

    .discord-widget iframe {
        width: 250px;
        height: 350px;
    }
}
