/* General Styles */
body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #1e3c72, #2a5298);
    color: white;
    text-align: center;
}

/* Container */
.container {
    max-width: 850px;
    margin: 50px auto;
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Headings */
h1, h2, h3 {
    color: #ffdb58;
}

/* Paragraph */
p {
    font-size: 20px;
    line-height: 1.8;
    color: #eee;
}

/* Call-to-Action Button */
.cta {
    background: linear-gradient(to right, #4CAF50, #66BB6A);
    color: #000;
    padding: 15px 30px;
    font-size: 26px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}
.cta:hover {
    background: linear-gradient(to right, #43A047, #5CB85C);
    cursor: pointer;
    transform: scale(1.05);
}

/* Referral Code Copy Box */
.copy-container {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    background: #ffdb58;
    color: #333;
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
}
.copy-button {
    background-color: #ffcc00;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
}
.copy-button:hover {
    background-color: #e6b800;
}

/* Live Chat Button */
.chat-support {
    background-color: #0073e6;
    color: white;
    padding: 15px;
    font-size: 20px;
    border-radius: 8px;
    margin-top: 30px;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}
.chat-support:hover {
    background-color: #005bb5;
}

/* FAQ Section */
.faq-container {
    text-align: left;
    margin-top: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
    color: #ffdb58;
    font-size: 22px;
    cursor: pointer;
    position: relative;
    padding-left: 30px; /* Space for custom bullet */
    margin: 0;
}

.faq-question::before {
    content: '•'; /* Custom bullet point */
    color: #ffdb58;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.faq-question.active::before {
    content: '▾'; /* Change bullet to arrow when active */
}

.faq-answer {
    color: #eee;
    font-size: 18px;
    line-height: 1.6;
    padding-left: 30px; /* Align with question text */
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    display: none; /* Hidden by default */
}

/* 📱 Mobile-Friendly Adjustments */
@media screen and (max-width: 768px) {
    .container {
        max-width: 90%;
        padding: 20px;
    }
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 24px;
    }
    p {
        font-size: 18px;
    }
    .cta {
        font-size: 22px;
        padding: 12px 25px;
    }
    .copy-container {
        font-size: 20px;
    }
    .chat-support {
        font-size: 18px;
        padding: 12px;
    }
    .faq-question {
        font-size: 20px;
    }
    .faq-answer {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 20px;
    }
    p {
        font-size: 16px;
    }
    .cta {
        font-size: 20px;
        padding: 10px 20px;
    }
    .copy-container {
        font-size: 18px;
        padding: 8px;
    }
    .chat-support {
        font-size: 16px;
        padding: 10px;
    }
    .faq-question {
        font-size: 18px;
    }
    .faq-answer {
        font-size: 15px;
    }
}

