* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
.dropbtn{
   background-color: #4CAF50;
   color: white;
   padding: 16px;
   border: none;
   cursor: pointer;
}
.dropdown{
   position: relative;
   display: inline-block;
}
.dropdown-content {
   display: none;
   position: absolute;
   right: 0;
   background-color: #f9f9f9;
   min-width: 160px;
   box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
   z-index: 1;
}
.dropdown-content a{
   color: black;
   padding: 12px 16px;
   text-decoration: none;
   display: block;
}
.dropdown-content a:hover{background-color: #f1f1f1;}
.dropdown:hover .dropdown-content{
   display: block;
}
.hero {
    background-image: url(nature\ bicyle\ 2.jpg);
    background-repeat: no-repeat;
    background-size: 100% 300px;
    background-color: transparent;
    block-size: 300px;
    padding-top: 60px;

    text-align: right;
    padding-right: 50px;
}
.hero h1{
    font-size: 30px;
    margin-bottom: 10px;
}
.hero p{
    float: right;
    margin-bottom: 20px;

}
 .button-group{
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 50px;
    padding: 5px 10px;
}
.btn {
    border-radius: 5px;
    padding: 5px 10px;
    background-color: green;
    color: aliceblue;
}
 .feature{
    text-align: left;
    margin-top: 60px;
    padding: 0 50px;
 }
 .feature h2{
    font-size: 30px;
    margin-bottom: 30px;
 }
 .feature P{
    font-size: 12px;
    color: gray;
    margin-top: 20px;
 }
 .feature-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
 }
 .feature-box{
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }
 .feature-box h4{
    margin-top: 10px;

 }.feature-box p{
    font-size: 15px;
    line-height: 1.5;
 }
 .container{
    background-image: url(nature.jpg);
    background-repeat: no-repeat;
     background-size: cover;
    background-color: transparent;
    block-size: 1500px;
    padding-bottom: 100px;
    height: 500px;
    position: relative;

    text-align: center;
    padding-right: 30px;
    gap: 40px;
 }
 .image {
    max-width: 100%;
    border-radius: 8px;
    text-align: center;
    margin: 80px 0;
 }
 .notes{
    max-width: 2000px;
    margin: auto;
    padding: 40px 20px;
    border-radius: 8px;
    flex: 1;
    position: absolute;
    left: 50%;
    top: 100px;
    
 }
 .notes h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    right: 100px;
    bottom: 70px;
    font-weight: bold;
 }
 .notes h2 span{
   margin-bottom: 20px;
   position: relative;
   right: 70px;
 }
 .notes p {
    position: relative;
    left: 70px;
    bottom: 70px;
 }
 .notes ul {
    list-style: none;
 }
 .notes ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    right: 150px;
    bottom: 50px;
 }
 .notes ul li::before {
    content: "\2713";
    position: absolute;
    left: 35%;
 }
 .download{
   position: relative;
   right: 178px;
   bottom: 50px;
   background-origin: padding-box;
   border-radius: 5px;
   background-color: green;
   padding: 5px 10px;
   color: aliceblue;

 }