* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI';
}


.feature {
    text-align: -webkit-center;
    padding-bottom: 30px;
}

.feature-list {
    justify-content: space-between;
    width: 65%;
    justify-content: space-between;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 20px 20px;
    background-color: white;
}


.feature h2 {
    padding: 40px 0px;
    font-weight: bolder;
}


.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    font-size: 20px;
    color: white;
    border-radius: 50%;
    margin: 0 auto;
}

/* Check icon (Green background) */
.check-icon {
    background-color: green;
}

/* Close icon (Red background) */
.close-icon {
    background-color: red;
}

table th {
    padding: 8px;
    text-align: center;
}

table th strong {
    font-size: 22px;
}

table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid pink;
}

table td a.table-btn {
    padding: 10px 10px;
    background-color: red;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0px;
}

/* For Small Screens */
@media screen and (max-width: 600px) {

    .hero-content.text-black p {

        width: 85%;
    }


    .responsive-table {
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }

    .manu-img {
        width: 100% !important;
    }

    .image-content {

        width: 100% !important;
        padding: 10px !important;
    }

    .explore-acc-link {
        gap: 12px 0px;
    }


}


.image-content h3 {
    font-size: xx-large;
    margin-bottom: 15px;
}


section.bgcolor-skyblue {
    background-color: #e6f5ff;
    padding: 50px 0px;
}

.manu-img {
    width: 35%;
}

.manu-img img {
    width: 100%;
}

.image-content {
    width: 60%;
    padding: 10px 30px;
}


section.faq {
    margin: 50px 0px;
}

.explore h2 {
    color: #ed1a3b;
}

.explore-link {
    display: grid;
}

.explore-acc-link {
    align-items: center;
}

.explore-img img {
    width: 95%;
}

.explore-link a {
    text-decoration: none;
    color: black;
    margin-bottom: 5px;
}

.explore-link a:hover {
    text-decoration: underline;
}



/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .btn {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}