::-webkit-scrollbar {
    display: none;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body{
    font-family: Montserrat;
    display: grid;
    justify-items:center;
    background-color: white;
    min-height: 100vh;
    
}

/* Nav Section */

.header{
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    width: 100%;
    position: sticky;
    top: 0;
    font-weight: 650;
    font-size: 18px;
}

li.nav{
    display: flex;
    align-content: center;
}

nav.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 96%;
    padding: 15px;
}

.checkbtn{
    font-size: 30px;
    cursor: pointer;
    display: none;
}

#check{
    display: none;
}

ul.main-list {
    width: 60%;
    list-style-type: none;
    display: flex;
	justify-content: space-around;
}

a.nav-items:hover{
    transition-duration: 0.4s;
    text-decoration: underline #950000;
    color:#950000;
    cursor: pointer;
}


a.nav-items{
    display: block;
    align-content: center;
    text-decoration: none;
    color: black;

}

button.CVbutton{
    height: 50px;
    width: 130px;
    color:white;
    background-color: #950000;
    box-shadow: 3.5px 3.5px black;
    border-radius: 25px; 
    overflow: hidden;
    cursor: pointer;
    transition-duration: 0.3s;
    font-size: 16px;
    font-weight: 650;
    
}

li.mobile-button{
    display: none;
}

.CVbutton:hover {
    background-color: white;
    color: #950000;
}


hr.nav{
    width: 100%;
    height: 3px;
    color: #950000;
    background-color: #950000; 
}

/* main */
main.main{
    width: 60%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1.policy{
    font-size: clamp(2.5rem, 2.188rem + 1.667vw, 3.438rem); /*35px - 55px*/
    color: #A60000;
    text-align: center;
}


h2.policy {
    color: #A60000;
    margin-top: 20px;
  }
p.policy-p {
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
  }

p.policy-p strong {
    color: #A60000;
    font-weight: bold;
  }

ul.policy-ul {
    margin-left: 20px;
    list-style-type: disc;
  }

ul.policy-ul li.policy-li {
    margin-bottom: 10px;
  }

.highlight {
    background-color: #f2f2f2;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

a.content{
    color: black;
    text-decoration: none;
}
a.content:hover{
    color: #950000;
    text-decoration: underline;
}

/* Footer Section */

footer.footer-container {
    height: 55vh;
    min-height: 450px;
    width: 100%;
    background-color: #950000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    margin-top: 5%;
    font-size: clamp(0.875rem, 0.792rem + 0.444vw, 1.125rem); /*14px - 18px*/
}
    
div.footer-content{
    width: 75%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}
    
div.links-section{
    height: 50%;
    display: flex;
    justify-content: space-around;
}
    
ul.footer-ul{
    list-style: none;
    
    li{
    margin-bottom: 13px;
    }
}

a.footer {
    color: white;
    text-decoration: none;
}

a.footer:hover {
    color: yellow;
    transition: 0.3s;
    text-decoration: underline;
}
    
div.links{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    }
    
.footer-h3{
    margin-bottom: 20px;
    }
    
div.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    }
    
hr.footer{
    margin: 3% 0 3% 0;
    height: 3px;
    color: white;
    background-color: white;
    }
   
p.footer{
    text-align: center;
    }

div.logoFooter{
    width:20%;
    display: block;
    align-content: center;
}

img.logoFooter{
    width: 100%;
    height:auto;
    object-fit: cover;
}


/* responsive codes */

/* mobile devices */
@media only screen and (max-width: 760px) {
    
    /* navbar */
    .checkbtn {
        display: block; /* Show hamburger menu */
    }

    .logoHead{
        width: 55px;
    }

    hr.nav{
        display: none;
    }

    ul.main-list {
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-around;
        font-size: 20px;
        position: fixed;
        width: 70%;
        padding: 50px 0px 90px 40px;
        height: 100vh;
        background-color: white;
        top: 8%;
        left: -100%; /* Hide menu by default */
        transition: all 0.5s ease-in-out;
        li.mobile-button{
            display: flex;
        }
    }

    button.CVbutton{
        height: 50px;
        width: 160px;
        font-size: 16px;
    }

    button.desktop-button{
        display: none;
    }

    main.main{
        width: 100%;
        margin: 0;
    }

    /* footer */

    /* footer */
    footer.footer-container{
        height:150vh;
        min-height: 700px;
        max-height: 900px;
        padding: 0;
    }
    div.footer-content{
        width: 85%;
        height: 95%;
        align-content: flex-start;
        text-align: center;
        justify-content: space-between;
    }
    div.links-section{
        height: auto;
        flex-direction: column;
    }
    .footer-h3{
        margin-top: 25px;
    }
    div.logoFooter{
        width: 100%;
        margin-bottom: 10px;
    }
    img.logoFooter{
        width: 150px;
    }
}