/* ===== Template Page Shared Styles ===== */

/* Base */
body {
    background-color: #ffffff;
    color: #2B2350;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.menu-open {
    touch-action: none;
    overflow: hidden;
}

/* ===== Inner Hero (template page banner) ===== */
.inner-hero {
    padding: 100px 20px 60px;
    text-align: center;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.inner-hero1 {
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, #9F7AEA 0%, #6B46C1 100%);
    position: relative;
    overflow: hidden;
    max-width: 650px;
    margin: 0 auto;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.inner-hero1::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 10%, transparent 10%),
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 10%, transparent 10%);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    z-index: 0;
}

.inner-hero img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    filter: brightness(0) invert(1);
}

.inner-hero h1 {
    font-size: 2rem;
    color: #ffffff !important;
    font-weight: 800;
    margin: 0 auto 15px;
    max-width: 900px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.inner-hero p {
    font-size: 1.25rem;
    color: #e2e8f0 !important;
    margin-bottom: 40px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* ===== CTA Button ===== */
.primary-btn {
    background-color: #ffffff;
    color: #713AD3 !important;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.primary-btn:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===== Inner Content ===== */
.inner-content {
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    margin-top: 0;
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.inner-container {
    max-width: 800px;
    margin: 0 auto;
}

.inner-container h2 {
    font-size: 1.2rem;
    color: #713AD3 !important;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 30px;
}

.inner-container p.desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* ===== Question Cards ===== */
.question-card {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    background: #ffffff;
}

.question-card .icon-box {
    background-color: #713AD3 !important;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.question-card p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== Responsive ===== */
@media only screen and (max-width: 768px) {
    .inner-hero h1 {
        font-size: 1.5rem;
    }

    .inner-hero p {
        font-size: 1rem;
    }

    .inner-hero1 {
        padding: 40px 24px;
    }

    .inner-content {
        padding: 40px 20px;
    }

    .primary-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

@media only screen and (max-width: 480px) {
    .inner-hero {
        padding: 90px 16px 40px;
    }

    .inner-hero1 {
        padding: 32px 16px;
    }

    .inner-hero h1 {
        font-size: 1.3rem;
    }

    .inner-content {
        padding: 30px 16px;
    }
}
