:root{
    --primary:#f59e0b;
    --primary-dark:#d97706;
    --dark:#1f2937;
    --text:#64748b;
    --light:#f8fafc;
    --white:#ffffff;
    --border:#e5e7eb;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(135deg,#f8fafc,#ffffff);
    color:var(--dark);
    overflow-x:hidden;
}

/* ==========================
   SECTION
========================== */

.refund-policy-section{
    padding:100px 20px;
    position:relative;
}

.container{
    max-width:1300px;
    margin:auto;
}

/* ==========================
   HEADER
========================== */

.page-header{
    text-align:center;
    margin-bottom:70px;
}

.badge{
    display:inline-block;
    background:rgba(245,158,11,.12);
    color:var(--primary-dark);
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.page-header h1{
    font-size:52px;
    font-weight:700;
    color:var(--dark);
    margin-bottom:18px;
    line-height:1.2;
}

.page-header p{
    max-width:700px;
    margin:auto;
    color:var(--text);
    line-height:1.8;
    font-size:16px;
}

/* ==========================
   GRID
========================== */

.policy-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* ==========================
   CARD
========================== */

.policy-card{
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.4);
    border-radius:24px;
    padding:35px;
    box-shadow:0 20px 50px rgba(0,0,0,.06);
    transition:all .4s ease;
    position:relative;
    overflow:hidden;
}

.policy-card::before{
    content:'';
    position:absolute;
    top:-50px;
    right:-50px;
    width:120px;
    height:120px;
    background:rgba(245,158,11,.08);
    border-radius:50%;
}

.policy-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* ==========================
   ICON
========================== */

.card-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:linear-gradient(135deg,var(--primary),#ffbe3d);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
    box-shadow:0 15px 30px rgba(245,158,11,.25);
}

/* ==========================
   CONTENT
========================== */

.policy-card h2{
    font-size:24px;
    color:var(--dark);
    margin-bottom:18px;
    font-weight:600;
}

.policy-card p{
    color:var(--text);
    line-height:1.8;
    font-size:15px;
}

.policy-card ul{
    list-style:none;
    margin-top:15px;
}

.policy-card ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    color:var(--text);
    line-height:1.7;
}

.policy-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--primary);
    font-weight:700;
}

/* ==========================
   HIGHLIGHT BOX
========================== */

.highlight-box{
    margin-top:25px;
    background:#fff8eb;
    border-left:4px solid var(--primary);
    padding:20px;
    border-radius:14px;
}

.highlight-box h3{
    color:var(--dark);
    margin-bottom:10px;
    font-size:18px;
}

.highlight-box p{
    margin:0;
}

/* ==========================
   FULL WIDTH CARD
========================== */

.full-width{
    grid-column:span 2;
}

/* ==========================
   ANIMATION
========================== */

.policy-card{
    animation:fadeUp .8s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .policy-grid{
        grid-template-columns:1fr;
    }

    .full-width{
        grid-column:span 1;
    }

    .page-header h1{
        font-size:42px;
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .refund-policy-section{
        padding:70px 15px;
    }

    .page-header{
        margin-bottom:50px;
    }

    .page-header h1{
        font-size:34px;
    }

    .policy-card{
        padding:25px;
    }

    .policy-card h2{
        font-size:20px;
    }

}

@media(max-width:480px){

    .page-header h1{
        font-size:28px;
    }

    .page-header p{
        font-size:14px;
    }

    .card-icon{
        width:60px;
        height:60px;
        font-size:24px;
    }

    .policy-card{
        padding:22px;
    }

    .policy-card h2{
        font-size:18px;
    }

}