
body {
    margin-top: 60px; /* Adjust based on navbar height */
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #F9F9F9;
}

.purchase {
    text-align: center;
    background-color: #F9F9F9;
    padding: 40px 20px;
    margin-top: 60px;
    height: 700px;
}

.purchase h2 {
    font-size: 38px;
    font-weight: bold;
    font-family: "K2D", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.purchase p {
    color: #666;
    margin-bottom: 46px;
    font-family: "K2D", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.plans {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.plan-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 280px;
    text-align: left;
}


.plan-header {
    display: flex;
    margin-bottom: 10px;
}

.badge {
    padding: 5px 10px;
    border-radius: 15px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    font-family: "K2D", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.basic { background-color: #36d1dc; }
.plus { background-color: #3a7bd5; }
.premium { background-color: #5533ff; }
.trial{ background-color: #00b6b6}

h3 {
    font-size: 30px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 10px;
    font-family: "K2D", sans-serif;
    font-weight: 400;
    font-style: normal;
}

hr {
    border: none;
    height: 1px;
    background: #ddd;
    margin-bottom: 15px;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

ul li {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 30px;
    font-family: "K2D", sans-serif;
    font-weight: 400;
    font-style: normal;
}

ul li img {
    width: 18px;
    margin-right: 10px;
}

.cta {
    display: block;
    width: 100%;
    background-color: #ff652f;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    font-family: "K2D", sans-serif;
    font-weight: 400;
    font-style: normal;
    box-shadow: 0px 2px rgba(0, 0, 0, 0.1);
}

.cta:hover {
    background-color: #e64a19;
}

/*-----------------Footer CSS--------------------*/
.foot {
    background-color: #252525;
    color: white;
    padding: 30px 50px;
    font-family: "K2D", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo img {
    width: 150px;
}

.footer-logo p {
    max-width: 300px;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
    font-family: "K2D", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #CFCFCF;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 12px ;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #505050;
    padding: 0px 20px;
    margin-top: 20px;
    border-radius: 30px;
}

.social-icons {
    display: flex;
    gap: 25px;
}

.social-icons img {
    width: 30px; /* Adjust size as needed */
    height: auto;
}

/* ---------- RESPONSIVE DESIGN ---------- */

/* ---------- Tablet DESIGN ---------- */
@media (max-width: 1024px) {
    body {
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .plans {
        flex-wrap: wrap;
        gap: 30px;
    }

    .plan-box {
        width: 45%;
    }

    .footer-links {
        gap: 40px;
    }
}

/* ---------- Mobile DESIGN ---------- */
@media (max-width: 768px) {
    body {
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .purchase {
        padding: 0px 15px;
    }

    .purchase h2 {
        font-size: 32px;
    }

    .purchase p {
        font-size: 14px;
    }

    .plans {
        flex-direction: column;
        gap: 20px;
    }

    .plan-box {
        width: 90%;
    }

    .foot{
        position: relative;
        top: 1200px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 10px 15px;
    }
}

/* ---------- Small Mobile DESIGN ---------- */
@media (max-width: 480px) {
    body {
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .purchase h2 {
        font-size: 28px;
    }

    .purchase p {
        font-size: 13px;
    }

    .plan-box h3 {
        font-size: 24px;
    }

    .cta {
        font-size: 14px;
        padding: 8px;
    }

    .social-icons img {
        width: 24px;
    }
}
