:root{--blue:#153c9d;--dark:#091120;--light:#f7f9fd;--text:#17213a}*{box-sizing:border-box}body{margin:0;font-family:Arial,Helvetica,sans-serif;color:var(--text);background:#fff}.container{width:min(1180px,92%);margin:auto}.topbar{background:#fff;box-shadow:0 2px 12px #0001;position:sticky;top:0;z-index:5}.nav{height:74px;display:flex;align-items:center;justify-content:space-between}.brand{font-weight:800;color:var(--blue);text-decoration:none;font-size:22px}.brand span{color:#111}.brand small{display:block;font-size:10px;color:#777;font-weight:500}nav a{margin-left:28px;color:#111;text-decoration:none;font-size:14px}.hero{background:linear-gradient(135deg,#153c9d,#075cff);color:#fff;padding:90px 0}.heroGrid{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center}.hero h1{font-size:44px;line-height:1.1}.hero p{font-size:18px;line-height:1.7}.btn{display:inline-block;background:var(--blue);color:#fff;padding:13px 25px;border-radius:8px;text-decoration:none;border:0;font-weight:700;margin:8px 8px 8px 0}.btn.white{background:#fff;color:var(--blue)}.btn.ghost{background:#ffffff20;border:1px solid #fff}.heroCard{background:#ffffff18;padding:35px;border-radius:16px;box-shadow:0 10px 30px #0002}.heroCard li{margin:15px 0}.about{display:grid;grid-template-columns:repeat(3,1fr);gap:25px;margin-top:55px;margin-bottom:55px}.infoCard,.serviceBox,.plan,.insight,.formCard{background:#fff;border-radius:12px;padding:25px;box-shadow:0 8px 24px #0d2b6b15}h2{text-align:center;color:var(--blue);margin-top:50px}.centerSub{text-align:center;color:#667}.servicesGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin:30px 0 60px}.serviceBox h4{color:var(--blue);margin-top:0}.events{background:#f97316;color:#fff;text-align:center;padding:55px 0}.eventGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:25px;margin-top:30px}.eventGrid div{background:#ffffff14;border-radius:10px;padding:25px}.pageHead{background:#f4ede7;padding:60px 0;text-align:center}.pageHead h1{color:var(--blue);font-size:38px}.planGrid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;margin-top:50px}.plan h2{text-align:left;margin:12px 0;color:#111}.tableWrap{overflow-x:auto;margin-bottom:60px}table{width:100%;border-collapse:collapse;background:#fff;box-shadow:0 8px 24px #0d2b6b12;border-radius:12px;overflow:hidden}th{background:var(--blue);color:#fff}td,th{padding:16px;border:1px solid #e8edf7;text-align:center}.formCard{margin-top:50px;margin-bottom:70px}.formGrid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}input,select,textarea{width:100%;padding:15px;border:1px solid #dbe3f3;border-radius:8px}textarea{grid-column:1/-1;min-height:120px}.alert{background:#edf7ee;color:#207a2d;padding:12px 15px;border-radius:8px;margin-bottom:20px}.insightsGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:25px;margin:50px auto 80px}.imagePh{height:170px;background:#e5e7ee;border-radius:10px;margin-bottom:18px}.footer{background:#071120;color:#fff;padding:45px 0}.footgrid{display:grid;grid-template-columns:2fr 1fr 1.4fr;gap:35px}.footer a{display:block;color:#cbd4e6;text-decoration:none;margin:8px 0}.footer input{border:0}.footer button{margin-top:10px;background:#f97316;color:#fff;border:0;padding:12px 18px;border-radius:8px}@media(max-width:800px){.heroGrid,.about,.servicesGrid,.eventGrid,.planGrid,.insightsGrid,.footgrid,.formGrid{grid-template-columns:1fr}.nav{height:auto;padding:15px 0;display:block}nav a{display:inline-block;margin:12px 12px 0 0}.hero h1{font-size:32px}}
.membershipTable {
    padding: 50px 0;
}

.membershipTable h2 {
    color: #f97316;
    font-size: 24px;
    margin-bottom: 25px;
}

.event h2 {
     text-align: center;
    color: #fff;
    margin-top: 0px;
}

.membershipTable table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    font-size: 14px;
}

.membershipTable th {
    background: #f97316;
    color: #fff;
    padding: 14px 12px;
    text-align: center;
    font-weight: 600;
}

.membershipTable td {
    padding: 14px 12px;
    text-align: center;
    color: #1c1714;
    border-bottom: 1px solid #e5e7eb;
}

.membershipTable tbody tr:nth-child(odd) {
    background: #f7f9fc;
}

.membershipTable tbody tr:nth-child(even) {
    background: #ffffff;
}

.membershipTable td:first-child,
.membershipTable th:first-child {
    text-align: center;
}

.membershipTable .priceRow {
    background: #eaf3ff !important;
}

.membershipTable .priceRow td {
    font-weight: 600;
    vertical-align: middle;
}

.selectBtn {
    display: inline-block;
    margin-top: 8px;
    background: #143d91;
    color: #fff;
    padding: 7px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
}

.selectBtn:hover {
    background: #0d2e70;
    color: #fff;
}

@media(max-width: 768px) {
    .membershipTable {
        overflow-x: auto;
    }

    .membershipTable table {
        min-width: 900px;
    }
}

/* THEME OVERRIDE */

:root{--blue:#f97316;--dark:#1f2937;--light:#fff7ed;--text:#17213a}
.hero{background:linear-gradient(135deg,#f97316,#fb923c)!important}
.btn,.selectBtn{background:#f97316!important}
.topbar{border-bottom:3px solid #f97316}
.serviceBox,.infoCard,.eventCard{border-top:4px solid #f97316}

