* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    color: #e0e7ef;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: #030712;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Modern Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff8585, #6ce0d7);
}
/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #ff6b6b #1a1a1a;
}

#main {
    width: 100%;
    height: 100%;
}

#page1 {
    width: 100%;
    height: 100vh;
}

#nav {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#nav-content {
    width: 75%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#nav-elements {
    width: 100%;
    height: 100%;
    display: flex;
}



#nav-content i {
    font-size: 3vw;
    font-weight: 500;
}

#page-hero {
    width: 100%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pg1-hr-card {
    width: 60%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.2vw;
}

#pg1-hr-card h3 {
    font-size: 2vw;
    font-weight: 500;
}

#price-card {
    width: 60%;
    height: 60%;
    border: 1px solid saddlebrown;
    display: flex;
}

#price-card-left {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5vw;
}

#price-card-left h5 {
    font-size: medium;
}

#price-card-left li {
    font-size: small;
}

label {
    font-size: 1.5vw;
    font-weight: 450;
}

ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 3px;
}

li {
    font-size: 0.9vw;
    font-weight: 300;
}

#price-card-right {
    width: 50%;
    height: 100%;
}

#price-card-right-top {
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 0.5vw;
}

#price-card-right-top i {
    font-size: 3.5vw;
}

#price-card-right-bottom {
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#price-card-right-bottom button {
    width: 150px;
    height: 30px;
    color: #1a1a1a;
    border-radius: 8px;
}

/* Responsive Styles */

/* For tablets */
@media (max-width: 768px) {
   
    #nav-content i {
        font-size: 4vw;
        font-weight: 500;
    }

    #pg1-hr-card {
        width: 80%;
        height: 70%;
    }

    #price-card {
        width: 80%;
        height: 70%;
        flex-direction: column;
    }
    #pg1-hr-card h3 {
        font-size: 3vw;
        font-weight: 600;
    }
    #price-card-left, #price-card-right {
        width: 100%;
        height: 50%;
    }

    #price-card-left h5, label, li {
        font-size: 4vw;
    }

    #price-card-right-top i {
        font-size: 5vw;
    }

    #price-card-right-bottom button {
        width: 120px;
        height: 25px;
    }
}

/* For mobile */
@media (max-width: 480px) {
    #nav-content i {
        font-size: 5vw;
        font-weight: 500;
    }
    #pg1-hr-card {
        width: 90%;
        height: 80%;
    }

    #price-card {
        width: 90%;
        height: 80%;
        flex-direction: column;
    }
    #pg1-hr-card h3 {
        font-size: 5vw;
        font-weight: 600;
    }
    #price-card-left, #price-card-right {
        width: 100%;
        height: 50%;
    }

    #price-card-left h5, label, li {
        font-size: 5vw;
    }

    #price-card-right-top i {
        font-size: 6vw;
    }

    #price-card-right-bottom button {
        width: 100px;
        height: 20px;
    }
}

/* For larger desktops */
@media (min-width: 1200px) {
    #pg1-hr-card {
        width: 50%;
        height: 50%;
    }

    #price-card {
        width: 60%;
        height: 60%;
    }

    #price-card-left h5, label, li {
        font-size: 1vw;
    }

    #price-card-right-top i {
        font-size: 2vw;
    }

    #price-card-right-bottom button {
        width: 180px;
        height: 35px;
    }
}
