

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: linear-gradient(135deg, #9334dd, #6e2b8c);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    font-family: 'Inter', sans-serif;
}





.support-container {
    max-width: 600px;
    background-color: #fff;
    color: #333;
    padding: 40px;
    margin-top: 80px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s;
}

.support-container:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 1.1rem;
}

a {
    color: #9334dd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

a:hover {
    text-decoration: underline;
    color: #6e2b8c;
}

.footer-links {
    margin-top: 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .support-container {
        padding: 20px;
        margin: 0 10px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }
}
