body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: white;
    color: #024576;
}

.hero {
    background: url("WhatsApp\ Image\ 2025-09-19\ at\ 2.22.14\ PM.jpeg");
    background-size: cover;
    height: 500px;
    padding: 40px 0 30px 0;
    text-align: center;
    color: black;
    font-family: "Lobster Two", sans-serif;
    font-weight: 70000;
    font-style: Bold;
}
h2{
   color: black;
}

.hero-subtitle {
    font-size: 1rem;
    color: #04518c;
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #1372b3;
    font-weight: 70000;
    letter-spacing: 1px;
}
h3{
    color: white;
    
}

.book-call {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 10px;
}

.cta-btn {
    padding: 12px 32px;
    font-size: 1.15rem;
    background: #06b09a;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 3px 8px 0 rgb(71 188 191 / 12%);
    transition: background 0.25s;
}
.para{
    text-align: right;
}
.cta-btn:hover {
    background: #1255af;
}



.section {
    max-width: 1600px;
    margin: 6px auto;
    border-radius: 14px;
    box-shadow: 0 3px 8px rgba(17, 5, 29, 0.06);
    padding: 32px 18px 28px 18px;
}

h2 {
    color: #087aad;
    font-size: 1.3rem;
    padding-bottom: 10px;
    font-weight: 700;
    margin-top: 0;
}

.story-content {
    display: flex;

    flex-wrap: wrap;
}
.story-text {
    flex: 1 1 300px;
    min-width: 250px;
    font-size: 1.08rem;
}
.story-photo {
    width: 120px;
    height: 120px;
    margin-right: 40px;
    border-radius: 50%;
    min-width: 100px;
}

.reviews {
    display: flex;
    gap: 40px;
    margin-top: 8px;
    height: 300px;
}
 

.pricing-section {
    text-align: center;
    background: white;
    margin-top: 180px;
    margin-bottom: 16px;
}

.subscriptions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
    box-shadow: #050fcf;
}

.subscription-option {
   background: linear-gradient(120deg, #96d3ed 60%, #158ad4 100%);
    border-radius: 24px;
    padding: 14px 0;
    font-weight: 500;
    color: #014c70;
    font-size: 1.08rem;
    margin: 0 auto;
    width: 270px;
}

.whatsapp-contact {
    margin-top: 18px;
    color: #068481;
    font-size: 1rem;
}

.whatsapp-contact a {
    color: #05a2ad;
    text-decoration: none;
    font-weight: bold;
}

.footer {
    text-align: center;
    margin: 32px 0 10px 0;
    color: white;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 600px;
        padding: 20px 0 20px 0;
    }
    .cta-btn {
        margin-top: 500px;
        padding: 10px 24px;
        font-size: 1rem;
    }
    .hero-title {
        font-size: 1.4rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .section, .pricing-section {
        padding: 16px 10px 15px 10px;
        margin: 4px auto;
    }
    h2 {
        font-size: 1.2rem;
    }
    .story-content {
        flex-direction: column;
        align-items: center;
    }
    .story-text {
        font-size: 1rem;
        text-align: center;
    }
    .story-photo img {
        width: 120px;
        height: 120px;
    }
    .reviews {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        height: auto;
    }
    .review-circle img {
        width: 120px;
        height: 120px;
    }
    .subscription-option {
        width: 90vw;
        font-size: 1rem;
    }
    .whatsapp-contact {
        font-size: 0.9rem;
    }
    .footer {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 500px;
    }
    .cta-btn {
        margin-top: 10px;
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    .hero-title {
        font-size: 1.2rem;
    }
    .hero-subtitle {
        font-size: 0.8rem;
    }
    .section, .pricing-section {
        padding: 12px 8px 12px 8px;
    }
    h2 {
        font-size: 1.1rem;
    }
    .story-text {
        font-size: 0.95rem;
    }
    .story-photo img {
        width: 100px;
        height: 100px;
    }
    .reviews {
        gap: 15px;
    }
    .review-circle img {
        width: 100px;
        height: 100px;
    }
    .subscription-option {
        width: 95vw;
        font-size: 0.95rem;
    }
    .whatsapp-contact {
        font-size: 0.85rem;
    }
    .footer {
        font-size: 0.85rem;
    }
}
