/* =========================
   GLOBAL RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* =========================
   BODY
========================= */

body{
    font-family:system-ui,-apple-system,sans-serif;
    background:#dfe4ef;
    color:#222;
    line-height:1.7;
}

/* =========================
   LAYOUT
========================= */

.container{
    width:100%;
    max-width:1075px;
    margin:auto;
    padding:20px;
}

/* =========================
   TOP BAR
========================= */

.top-bar{
    background:#ef2d2d;
    color:#fff;
    text-align:center;
    padding:12px;
    border-radius:5px;
    font-size:16px;
    font-weight:700;
    margin-bottom:24px;
}

/* =========================
   CARD STYLES
========================= */

.card{
    background:#fff;
    border-radius:16px;
    padding:40px;
    margin-bottom:28px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.card-bg{
    background:linear-gradient(
        90deg,
        rgba(42,123,155,1) 0%,
        rgba(237,241,255,1) 0%,
        rgba(222,236,255,1) 100%
    );
    border-radius:16px;
    padding:40px;
    margin-bottom:28px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    border:1px solid #93c5fd;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    display:flex;
    gap:25px;
    align-items:center;
    flex-wrap:wrap;
}

.hero-text{
    flex:1;
    min-width:260px;
}

.hero-image{
    width:220px;
    height:180px;
    background:#e9edf5;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:70px;
}

.hero-image img{
    border-radius:10px;
}

/* INNER PAGE HERO */

.hero.center{
    display:block;
    text-align:center;
}

/* =========================
   TYPOGRAPHY
========================= */

h1{
    font-size:42px;
    line-height:1.15;
    color:#1d4ed8;
    margin-bottom:14px;
    font-weight:800;
}

h2,
.section-title{
    color:#1d4ed8;
    font-size:30px;
    margin-bottom:20px;
    font-weight:700;
}

h3{
    font-size:20px;
    margin-bottom:18px;
    font-weight:700;
}

h4{
    color:#1d4ed8;
    margin-bottom:8px;
    font-size:20px;
}

p{
    color:#444;
    margin-bottom:18px;
    font-size:1.2rem;
}

.hero p{
    max-width:850px;
    margin:auto;
}

/* =========================
   STAR RATING
========================= */

.stars{
    color:#fbbf24;
    margin-bottom:12px;
    font-size:25px;
}

/* =========================
   BUTTONS
========================= */

.btn{
    display:inline-block;
    padding:15px 32px;
    background:linear-gradient(90deg,#16a34a,#22c55e);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    margin-top:10px;
    transition:all 0.3s ease;
}

.btn:hover{
    transform:scale(1.08);
    background:linear-gradient(90deg,#15803d,#16a34a);
    box-shadow:0 10px 22px rgba(34,197,94,0.35);
}

.btn-purple{
    background:linear-gradient(90deg,#5b21b6,#9333ea);
}

.btn-purple:hover{
    transform:scale(1.08);
    background:linear-gradient(90deg,#6d28d9,#a855f7);
    box-shadow:0 10px 22px rgba(147,51,234,0.35);
}

/* =========================
   GRID
========================= */

.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

/* =========================
   BOXES
========================= */

.box{
    padding:18px;
    border-radius:10px;
}

.green{
    background:#e7f9ec;
}

.red{
    background:#ffeaea;
}

/* =========================
   FEATURES
========================= */

.features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.feature-card{
    background:#fff;
    border:1px solid #dfe5f0;
    border-radius:12px;
    padding:18px;
    text-align:center;
}

.feature-icon{
    font-size:34px;
    margin-bottom:10px;
}

/* =========================
   PRICE BOX
========================= */

.price-box{
    background:#edf5ff;
    border-radius:12px;
    padding:20px;
    text-align:center;
    margin:20px 0;
}

.old-price{
    text-decoration:line-through;
    color:#777;
}

.new-price{
    color:#16a34a;
    font-size:42px;
    font-weight:800;
}

/* =========================
   FAQ
========================= */

.faq-item{
    margin-bottom:24px;
}

/* =========================
   LISTS
========================= */

ul{
    padding-left:22px;
    margin-bottom:20px;
}

li{
    margin-bottom:12px;
    font-size:1.2rem;
    list-style:none;
}

/* =========================
   NOTICE BOX
========================= */

.notice-box{
    background:#edf5ff;
    border-left:5px solid #2563eb;
    padding:20px;
    border-radius:12px;
    margin-top:20px;
}

/* =========================
   ALIGNMENT
========================= */

.center{
    text-align:center;
}

/* =========================
   FOOTER NOTES
========================= */

.footer-note{
    text-align:center;
    font-size:13px;
    color:#666;
    margin-top:20px;
}

/* =========================
   FULL WIDTH FOOTER
========================= */

.full-footer{
    width:100%;
    background:#ffffff;
    padding:35px 20px;
    margin-top:40px;
    box-shadow:0 -2px 10px rgba(0,0,0,0.06);
}

.footer-content{
    max-width:1075px;
    margin:auto;
    text-align:center;
}

.footer-links{
    margin-bottom:14px;
    font-size:15px;
    font-weight:600;
}

.footer-links a{
    text-decoration:none;
    color:#1d4ed8;
    margin:0 8px;
    transition:all 0.3s ease;
}

.footer-links a:hover{
    color:#9333ea;
    transform:scale(1.05);
}

.footer-links span{
    color:#888;
}

.footer-copy{
    color:#666;
    font-size:14px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    h1{
        font-size:32px;
    }

    h2,
    .section-title{
        font-size:24px;
    }

    .card,
    .card-bg{
        padding:28px;
    }

    .hero{
        flex-direction:column;
    }

    .hero-image{
        width:100%;
    }

    .grid-2{
        grid-template-columns:1fr;
    }

    .features{
        grid-template-columns:1fr;
    }

    .footer-links{
        display:flex;
        flex-direction:column;
        gap:10px;
    }

    .footer-links span{
        display:none;
    }

}

