/* ===============================
   GLOBAL
================================= */
body {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #eef3ff, #f8faff);
    margin: 0;
    padding: 0;
    color: #222;
    line-height: 1.7;
}

/* ===============================
   HERO HEADER
================================= */
.hero {
    width: 100%;
    background: linear-gradient(135deg, #0f4c9c, #1e73ff);
    color: #ffffff;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
}

/* FIXED: Force white color */
.hero h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.hero p {
    font-size: 17px;
    opacity: 0.95;
}

/* Back Button */
.back-home {
    position: absolute;
    top: 20px;
    left: 30px;
    color: white;
    text-decoration: none;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    font-size: 14px;
    transition: 0.3s ease;
}

.back-home:hover {
    background: white;
    color: #0f4c9c;
}

/* ===============================
   MAIN CONTAINER
================================= */
.membership-container {
    width: 85%;
    max-width: 1000px;
    margin: 60px auto;
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 60, 150, 0.08);
}

/* ===============================
   HEADINGS INSIDE CONTENT
================================= */
/* IMPORTANT: This prevents hero title override */
.membership-container h1 {
    text-align: center;
    color: #0f4c9c;
    margin-bottom: 15px;
}

h2 {
    text-align: center;
    color: #0f4c9c;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #1e73ff;
    margin: 12px auto 0;
    border-radius: 3px;
}

/* ===============================
   TABLE
================================= */
.membership-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.membership-table th,
.membership-table td {
    padding: 14px;
    text-align: center;
}

.membership-table th {
    background: linear-gradient(135deg, #0f4c9c, #1e73ff);
    color: #ffffff;
    font-weight: 600;
}

.membership-table td {
    border-bottom: 1px solid #e4e9ff;
}

.membership-table tr:nth-child(even) {
    background-color: #f4f7ff;
}

.membership-table tr:hover {
    background-color: #eaf1ff;
    transition: 0.3s ease;
}

/* ===============================
   ADVANTAGES LIST
================================= */
.advantages-list {
    margin-top: 25px;
    line-height: 1.9;
    color: #444;
    padding-left: 20px;
}

.advantages-list li {
    margin-bottom: 10px;
}

/* ===============================
   APPLICATION LINKS
================================= */
.application-links {
    margin-top: 40px;
    text-align: center;
}

.application-links a {
    display: inline-block;
    margin: 10px 15px;
    padding: 12px 24px;
    text-decoration: none;
    background: linear-gradient(135deg, #0f4c9c, #1e73ff);
    color: white;
    font-weight: 500;
    border-radius: 30px;
    transition: 0.3s ease;
}

.application-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 60, 150, 0.25);
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {

    .membership-container {
        width: 92%;
        padding: 30px 20px;
    }

    .hero h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 20px;
    }

    .membership-table th,
    .membership-table td {
        font-size: 14px;
        padding: 10px;
    }
}