.subscription-page {
    padding: 100px 20px;
    margin-top: -100px;
    background: linear-gradient(180deg, #f6f4ef, #ebe6d8);
    font-family: 'Poppins', sans-serif;
    color: #2e2e2e;
}

.subscription-container {
    max-width: 1100px;
    margin: auto;
}

/* Header */
.subscription-subheader {
    text-align: center;
    margin-bottom: 70px;
}

.subscription-subheader h1 {
    font-size: 42px;
    color: #2f3e32;
    margin-bottom: 20px;
}

.subscription-subheader p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 15px;
    color: #555;
}

.header-emphasis {
    font-weight: 500;
    color: #3a4a3e;
}

.subscription-divider {
    width: 90px;
    height: 3px;
    background: #8fa97a;
    margin: 30px auto;
    border-radius: 10px;
}

/* Sections */
.subscription-section {
    background: #ffffff;
    padding: 45px;
    border-radius: 18px;
    margin-bottom: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.subscription-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #344634;
}

.subscription-section p {
    font-size: 16.5px;
    line-height: 1.9;
    color: #444;
}

.subscription-section ul {
    margin-top: 20px;
    padding-left: 22px;
}

.subscription-section ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
}

.subscription-section ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #8fa97a;
    border-radius: 50%;
    position: absolute;
    left: -18px;
    top: 9px;
}

/* Steps */
.subscription-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.step-card {
    background: #f8f6f0;
    padding: 30px;
    border-radius: 16px;
    border-left: 5px solid #8fa97a;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Dates */
.subscription-dates {
    background: linear-gradient(135deg, #e7eee0, #f5f3eb);
}

.note {
    font-size: 14px;
    margin-top: 15px;
    color: #666;
}

/* Highlight */
.highlight {
    font-weight: 500;
    margin-top: 20px;
    color: #2f3e32;
}

/* Ideal */
.ideal-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Belonging CTA */
.subscription-belonging {
    background: #2f3e32;
    color: #f1f1f1;
    padding: 70px 40px;
    border-radius: 22px;
    text-align: center;
}

.subscription-belonging h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.subscription-belonging p {
    font-size: 17px;
    line-height: 1.9;
    max-width: 750px;
    margin: auto;
}

.subscription-cta {
    margin-top: 35px;
}

.subscription-cta a {
    padding: 14px 36px;
    background: #8fa97a;
    color: #1f2a21;
    text-decoration: none;
    font-weight: 600;
    border-radius: 40px;
    transition: background 0.3s ease;
}

.subscription-cta a:hover {
    background: #7b9367;
}

.limit-note {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
    .subscription-subheader h1 {
        font-size: 34px;
    }

    .subscription-section {
        padding: 30px 25px;
    }

    .subscription-belonging {
        padding: 50px 25px;
    }
}

.subscription-section {
    position: relative;
}

.subscription-image {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
}

.subscription-img {
    width: 300px;   /* small image */
    height: auto;
}

/* 📱 Mobile View */
@media (max-width: 768px) {
    .subscription-section {
        padding-right: 0;
    }

    .subscription-image {
        position: static;
        transform: none;
        margin-top: 20px;
        text-align: center;
    }

    .subscription-img {
        width: 130px;
    }
}


.hero {
    position: relative;
    height: 100vh; /* full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    /* background image from uploaded file */
    background-image: url('/assets/sub.jpg'); /* replace with your file path */
    background-size: cover;        /* cover entire hero */
    background-position: center;   /* keep image centered */
    background-repeat: no-repeat;

    /* overlay for text readability */
    background-color: rgba(30, 40, 34, 0.55);
    background-blend-mode: overlay;
}

/* HERO CONTENT */
.hero-content {
    max-width: 900px;
    padding: 0 20px;
    color: #ffffff;
}

/* HEADER */
.subscription-subheader h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* EMPHASIS */
.subscription-subheader p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #000000;
}
.subscription-ssubheader p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .subscription-subheader h1 {
        font-size: 2.2rem;
    }
    .subscription-subheader p {
        font-size: 1.1rem;
    }
}
