/* =======================
   SUBSCRIPTION PAGE
======================= */

body{
    margin:0;
    padding:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f6f9;
}

.subscription-container{
    max-width:900px;
    margin:40px auto;
    padding:20px;
}

.subscription-title{
    text-align:center;
    color:#0f437a;
    margin-bottom:30px;
}

.subscription-title h2{
    margin-bottom:10px;
}

.subscription-title p{
    color:#666;
}

/* Plans */

.plan-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    margin-bottom:30px;
}

.plan-card{
    background:white;
    border-radius:12px;
    padding:30px;
    text-align:center;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    transition:0.3s;
    border-top:5px solid #0f437a;
}

.plan-card:hover{
    transform:translateY(-5px);
}

.plan-card h3{
    color:#0f437a;
    margin-bottom:15px;
}

.plan-price{
    font-size:38px;
    font-weight:bold;
    color:#16a34a;
    margin:15px 0;
}

.plan-card ul{
    list-style:none;
    padding:0;
    margin:20px 0;
}

.plan-card ul li{
    padding:8px;
    color:#555;
}

/* Payment Form */

.payment-form{
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.payment-form label{
    display:block;
    margin-bottom:6px;
    font-weight:600;
    color:#333;
}

.payment-form input,
.payment-form select{
    width:100%;
    padding:12px;
    border:1px solid #d1d5db;
    border-radius:6px;
    margin-bottom:20px;
    box-sizing:border-box;
}

.payment-form input:focus,
.payment-form select:focus{
    outline:none;
    border-color:#0f437a;
}

.pay-btn{
    width:100%;
    background:#16a34a;
    color:white;
    border:none;
    padding:14px;
    border-radius:6px;
    font-size:16px;
    cursor:pointer;
    font-weight:bold;
}

.pay-btn:hover{
    background:#15803d;
}

/* Active Plan Highlight */

.monthly{
    border-top:5px solid #2563eb;
}

.yearly{
    border-top:5px solid #16a34a;
}

/* Mobile */

@media(max-width:768px){

    .subscription-container{
        width:95%;
    }

}