/* .packages_cloud {
    width: 35%;
    position: absolute;
    top: 14rem;
    left: 18%;
}
.subscribe_red  {
    position: absolute;
    top: 23rem;
    left: 30%;
    color: #E31E24;
    font-size: 5rem;
    font-weight: 900
}
.packares_text {
    position: absolute;
    top: 27rem;
    left: 30%;
    font-size: 5rem;
}
.the_youth_express {
    position: absolute;
    top: 25rem;
    left: 17%;
}

.the_youth_express h1 {
    font-size: 7rem;
    line-height: 95px;
    font-weight: 900;
    color: white;
}

.the_youth_express_paper {
    position: absolute;
    top: 13rem;
    right: 18%;
}

.the_youth_express_paper h1 {
    text-align: right;
    font-size: 7rem;
    line-height: 95px;
    font-weight: 900;
    color: white;
}

.the_youth_express_paper p {
    font-size: 2.2rem;
    text-align: right;
    color: white;
} */
/* --- CARD CONTAINER --- */
.sub-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    border-top: 5px solid var(--sixth-color);
    width: 100%;
    max-width: 380px;
    min-height: 1108px;
    overflow: hidden; /* Crucial for containing the image zoom */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.sub-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

/* --- 1. HEADER & TITLE --- */
.sub-card-header {
    padding: 25px 25px 15px; /* Slightly reduced bottom padding */
    text-align: center;
    position: relative;
}

.sub-card-title {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 0 0 10px 0;
    font-weight: 700;
}

.sub-card-price {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1;
}

.sub-card-price .currency { font-size: 1.5rem; vertical-align: super; opacity: 0.8; }
.sub-card-price .period { font-size: 1rem; color: var(--text-light); font-weight: 400; }

.badge-best-value {
    position: absolute;
    top: 15px;
    right: 5px;
    background-color: var(--sixth-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* === NEW: IMAGE STYLING === */
.sub-card-image {
    /* width: 100%;
    height: 180px; Define a fixed height for consistency */
    position: relative;
    overflow: hidden; /* Ensures image doesn't spill out during zoom */
}

.sub-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the space without distortion */
    transition: transform 0.5s ease; /* Smooth transition for the zoom */
}

/* Optional: Slight zoom effect on the image when hovering the card */
.sub-card:hover .sub-card-image img {
    transform: scale(1.05);
}


/* --- 2. DESCRIPTION BODY --- */
.sub-card-body {
    padding: 20px 25px;
    flex-grow: 1;
}

.sub-card-desc-intro {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--third-font);
}

.benefits-list { list-style: none; padding: 0; margin: 0; }
.benefits-list li {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-family: var(--third-font);
    display: flex;
    align-items: center;
    font-size: 0.95rem; /* Slightly smaller font for compact look */
}
.benefits-list li i { color: #28a745; margin-right: 10px; font-size: 1.1rem; }
.benefits-list li i.fa-star{ color: var(--fourth-color); margin-right: 10px; font-size: 1.1rem; }
/* --- 3. FOOTER & BUTTON --- */
.sub-card-footer {
    padding: 20px 25px 25px;
    text-align: center;
    background-color: #f9f9f9;
    border-top: 1px solid #eeeeee;
}

.btn-subscribe {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(90deg, var(--fifth-color),var(--fourth-color));
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--third-font);
    transition: all 0.8s ease;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.btn-subscribe:hover {
    background: linear-gradient(90deg, var(--fourth-color), var(--fifth-color));
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

.secure-text {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; /* Space between cards */
  max-width: 1200px;
  margin: 0 auto;
}

/* Ensure cards don't stretch weirdly on single rows */
.sub-card {
    flex: 1 1 300px; /* Grow, Shrink, Basis */
}

.shipping-badge {
    font-size: 0.85rem;
    color: #27ae60; /* A fresh green to represent 'Free/Bonus' */
    font-weight: 600;
    margin-top: 5px;
    display: block;
}

.free-shipping-highlight {
    color: #2c3e50;
    font-weight: 600;
}

.free-shipping-highlight i {
    color: #27ae60; /* Matches the badge */
}

.school-institutional-box {
    background: #fff8e1; /* Subtle gold/yellow for a 'special' feel */
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 25px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: var(--third-font);
}
.school-title { color: #d32f2f; font-weight: 700; margin-bottom: 10px; }
.school-text { color: #555; font-size: 1.05rem; }
.btn-school-call {
    background: #d32f2f;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}
.btn-school-call:hover { background: #b71c1c; color: white !important; transform: scale(1.05); }
.call-subtext { display: block; font-size: 0.8rem; margin-top: 5px; color: #777; }