*{
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}
.nav{
    margin-top: 10px;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.nav .left{
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.nav .right{
    margin-right: 10px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.nav .right a{
    color: #169E00;
    font-size: 32px;
    font-weight: 500;
    line-height: 100%;
    text-decoration: none;
}

.nav .right a:last-child {
    width: 251px;
    height: 70px;
    border-radius: 14px;
    background-color: #169E00;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 32px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.nav .right a:last-child:hover {
    background-color: #138C00; 
    transform: scale(1.05);   
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}


/* ############################################################# */
/* Herosection */
.hero-section{
    width: 100%;
    height: 855px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #169E00;
}
.hero-section .margin-left{
    margin-left: 70px;
}
.hero-section .content1 p:first-child{
    font-weight: 700;
    font-size: 96px;
    line-height: 100%;
    color: #FFFFFF;
}
.hero-section .content1 p:last-child{
    font-weight: 700;
    font-size: 96px;
    line-height: 100%;
    color: #FFFFFF;
}
.hero-section .content2 p{
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    color: #FFFFFF;
}
.hero-section .content3 p{
    width: 60%;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: #FFFFFF;
}

.hero-section .btn p {
    width: 251px;
    height: 70px;
    color: #169E00; 
    background-color: #FFFFFF; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    border-radius: 14px;
    cursor: pointer;
    border: 2px solid #169E00; 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.hero-section .btn p:hover {
    background-color: #169E00; 
    color: #FFFFFF; 
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}


