@import url("https://fonts.googleapis.com/css2?family=Baloo+2&family=Roboto:wght@300&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    background: #fff;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem 1rem;
    margin: auto;
}

.badge {
    text-transform: uppercase;
    color: deeppink;
    letter-spacing: 1px;
    font-size: 11px;
    text-align: center;
}

.heading {
    font-size: 28px;
    text-align: center;
    margin: 10px 0 30px;
}

.card_group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pricing-card {
    background: #fff;
    border: 2px solid deeppink;
    border-radius: 10px;
    padding: 24px 20px;
    flex: 1 1 300px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card i {
    color: deeppink;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 34px -12px gray;
    margin-bottom: 12px;
}

.pricing-card span {
    color: deeppink;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.price {
    font-size: 26px;
    font-family: "Baloo 2", cursive;
    font-weight: bold;
    margin-bottom: 15px;
}

.package_list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.package_list li {
    color: gray;
    font-size: 14px;
    margin: 6px 0;
}

.get_started_btn {
    border: 2px solid deeppink;
    color: #fff;
    background: linear-gradient(45deg, #bc4e9c, #f80759);
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.get_started_btn:hover {
    background: transparent;
    color: deeppink;
}

/* --- FAQ Section Styling --- */
.faq-section {
    margin-top: 60px;
    padding: 30px 20px;
    background-color: #fff0f6;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.faq-section h2 {
    font-size: 24px;
    color: deeppink;
    text-align: center;
    margin-bottom: 25px;
    font-family: "Baloo 2", cursive;
}

.faq {
    margin-bottom: 20px;
    padding: 15px 20px;
    background: #fff;
    border-left: 4px solid deeppink;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.faq strong {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #111;
    font-size: 16px;
}

.faq p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

/* --- Navbar Styling --- */
.navbar {
    width: 100%;
    background: deeppink;
    color: white;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar-container {
    max-width: 1200px;
    margin: auto;
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-items {
    display: flex;
    gap: 1.5rem;
}

.menu-items a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.menu-items a:hover {
    color: #ffd6e6;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .pricing-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .heading {
        font-size: 24px;
    }

    .faq-section {
        padding: 20px 15px;
    }

    .faq {
        padding: 12px 15px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-items {
        display: none;
        flex-direction: column;
        width: 100%;
        background: deeppink;
        margin-top: 1rem;
        padding: 1rem;
        border-top: 1px solid #fff3;
    }

    .menu-items a {
        padding: 0.5rem 0;
    }

    .menu-items.active {
        display: flex;
    }
}