/*  Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

/* Panner section starts here */
.hero-section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    .hero-image img {
        height: 70vh;
    }
}


/* Choose your plan starts here */

.container {
    max-width: 900px;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 0px 20px;
    text-align: center;
}

.container h1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.highlight {
    color: #f4b400; /* Yellow color for 'Design' */
}

.container p {
    font-size: 20px;
    line-height: 1.5;
    color: #333;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .container  h1 {
        font-size: 20px;
    }

    .container p {
        font-size: 14px;
    }
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    padding: 10px 20px;
    font-size: 21px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-basic {
    background: #f4b400;
    color: white;
}

.btn-standard {
    background: #0c0c3c;
    color: white;
}

.btn-premium {
    background: #0c0c3c;
    color: white;
}
.container1{
    width: 100%;
}
.pricing-card{
    text-align: center;
    width: 100%;
}
.package-image{
    display: flex;
    align-items: center;
    justify-content: center;
    img{
        width: 100%;
    }
}
/* Hide initially */
.hidden {
    display: none;
}
@media (max-width: 600px) {
    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 60%;
        margin: auto;
    }
    .package-image{
        display: flex;
        flex-direction: column;
    }
    .pricing-card{
        max-width: 100%;
        img{
            width: 100%;
            height: auto;
        }
    }
    .package-image{
        img{
            width: 100%;
        }
    }
}