/* Pre-hero Slug */
.pre-hero-slug {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.pre-hero-slug p {
    margin: 0;
    color: #2c3e50;
    font-size: 1.05rem;
    font-weight: 500;
}

.pre-hero-slug a {
    color: #6bcf7f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.pre-hero-slug a:hover {
    color: #4d96ff;
    text-decoration: underline;
}

/* Hero Section - Redesigned */
.hero-section-new {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 50%, #fff0e6 100%);
    padding: 80px 0;
}

.hero-container {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Headline */
.hero-headline {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

/* Main Hero Content - Image (60%) + Text (15%) with padding between */
.hero-main-content {
    display: flex;
    gap: 5%;
    align-items: center;
    margin-bottom: 80px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hero Image Container - 60% width */
.hero-image-container {
    width: 60%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    flex-shrink: 0;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.hero-image-container:hover img {
    transform: scale(1.03);
}

/* Hero Description - Takes remaining space (~35% with gap) */
.hero-description {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-description h2 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-description p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.hero-description .age-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6bcf7f, #4d96ff);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(107, 207, 127, 0.3);
    width: fit-content;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #6bcf7f, #4d96ff);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(107, 207, 127, 0.4);
    width: fit-content;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(107, 207, 127, 0.5);
    background: linear-gradient(135deg, #4d96ff, #6bcf7f);
}

.hero-cta i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.hero-cta:hover i {
    transform: translateX(5px);
}

/* Coming Soon Section */
.coming-soon-section {
    text-align: center;
    margin-top: 60px;
}

.coming-soon-title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.coming-soon-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.coming-soon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.coming-soon-badge