@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(to top, #490d47, #ff0080);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    min-height: 100dvh;
    text-align: center;
    color: white;
    width: 100%;
    overflow-x: hidden;
}

.scroll-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 10px 30px 10px;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.header {
    width: 100%;
    margin-bottom: 10px;
}

.header img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.title {
    font-size: 32px;
    font-weight: bold;
    color: #ff00aa;
    margin-top: 10px;
    margin-bottom: 5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    width: 100%;
}

.video-call-btn {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 20px;
    width: 100%;
    max-width: 350px;
    outline: none;
}

.video-call-btn img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
    transition: transform 0.15s ease;
}

.video-call-btn img:active {
    transform: scale(0.96);
}

.footer-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    width: 80px;
    cursor: pointer;
}

.btn img {
    width: 30px;
    margin-bottom: 5px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 480px) {
    body {
        align-items: flex-start;
        padding: 5px;
    }
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    .title {
        font-size: 26px;
    }
    .subtitle {
        font-size: 15px;
    }
    .video-call-btn img {
        width: 100%;
        max-width: 100%;
    }
    .footer-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    /* Inline Content Responsive Overrides */
    div[style*="max-width: 900px"],
    div[style*="max-width: 800px"] {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 5px !important;
    }
    div[style*="display: flex; flex-wrap: wrap"] {
        flex-direction: column !important;
        align-items: center !important;
    }
    div[style*="width: 31%"] {
        width: 100% !important;
        min-width: unset !important;
    }
    .faq-question {
        font-size: 15px !important;
        padding: 12px 14px !important;
    }
    .faq-answer {
        font-size: 14px !important;
        padding: 12px 14px !important;
    }
    div[id^="div-gpt-ad"], iframe {
        min-width: unset !important;
        width: 100% !important;
        overflow: hidden;
    }
}