/* Pricing Section */
.pricing {
    text-align: center;
    padding: 60px 20px;
    background-color: #ffffff;
}

.pricing h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #555;
}

.pricing-card .price {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #777;
}

.pricing-card .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.pricing-card .btn:hover {
    background-color: #0056b3;
}

.pricing-p {
    color: white;
    font-size: 40px;
    margin-left: 70px;
}

.imh-c {
    margin-left: 110px;
    height: 264px;
    width: 386px;
    border-radius: 41px;
}

.pice {
    align-items: center;
    margin-left: 40px;
    font-size: 35px;
    display: flex;
}

/* FAQ Section */
.faq {
    padding: 60px 20px;
    background-color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background-color: #007bff;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
}

.faq-question .toggle-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
}

.faq-answer {
    display: none;
    padding: 15px;
    background-color: #f7f7f7;
    border-radius: 8px;
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    color: #555;
}

/* Media Queries for Mobile Responsiveness */

/* For devices with a max-width of 768px (tablets) */
@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
        padding: 20px;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-p {
        font-size: 30px;
        margin-left: 20px;
    }

    .imh-c {
        margin-left: 20px;
        height: auto;
        width: auto;
    }

    .pice {
        margin-left: 20px;
        font-size: 28px;
    }
}

/* For devices with a max-width of 480px (mobile phones) */
@media (max-width: 480px) {
    .pricing-card {
        padding: 15px;
    }

    .pricing-card h3 {
        font-size: 20px;
    }

    .pricing-card .price {
        font-size: 24px;
    }

    .pricing-card ul li {
        font-size: 14px;
    }

    .faq h2 {
        font-size: 28px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}