* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    color: rgb(2, 2, 2);
    box-shadow: 5px 5px 5px rgba(1, 1, 1, 0.05);
    display: flex;
    justify-content: space-between;  
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
}

.header .logo img {
    height: 50px;
}

.bar_icon {
    font-size: 28px;
    cursor: pointer;
}


.container {
    margin-top: 100px; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.main img {
    max-width: 500px;
    border-radius: 10px;
}

.content {
    margin-left: 50px;
    max-width: 500px;
}

.green {
    background-color: green;
    width: 300px;
    height: 40px;
    color: rgb(255, 251, 251);
    font-weight: bold;
    margin-bottom: 10px;
     padding: 5px 10px;
}

.content h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.explorebtn {
    margin-left: 140px;
    padding: 10px 20px;
    background: rgb(250, 153, 26);
    color: rgb(7, 7, 7);
    border: 1px solid black;
    cursor: pointer;
    font-size: 15px;

}

.explorebtn:hover {
    background: rgb(255, 137, 3);
}

.features{
  margin-top: 100px;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
   box-shadow: 5px 5px 5px rgba(1, 1, 1, 0.05);
   
 
}
.feature {
  display: flex;
  gap: 20px;
  padding: 20px;
  transition: 0.2s ease-in-out;
}
.feature img {
  width: 72px;
}
.feature:hover {
  transition: 0.2s ease-in-out;
  box-shadow: 5px 5px 5px rgba(1, 1, 1, 0.05);
}
.menu {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 50px 0;
  align-items: center;
}
.menuh {
    background-color: green;
    width: 100px;
    height: 30px;
    color: rgb(255, 251, 251);
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 10px;
     padding: 5px 10px;
}
.grid-image {
  border-radius: 10px;
  transition: 0.2s ease-in-out;
  width: 100%;
  height: 100%;
}
.grid-image:hover {
  transform: scale(1.05);
  transition: 0.2s ease-in-out;
}
.grid {
  display: grid;
  gap: 10px;
  grid-template-areas:
    "I1 I1 I2 I3"
    "I1 I1 I2 I7"
    "I4 I5 I6 I7";
}
.item1 {
  grid-area: I1;
}
.item2 {
  grid-area: I2;
}
.item3 {
  grid-area: I3;
}
.item4 {
  grid-area: I4;
}
.item5 {
  grid-area: I5;
}
.item6 {
  grid-area: I6;
}
.item7 {
  grid-area: I7;
}

footer {
  background-color: #fff0db;
}
.link_lists h3 {
  margin-bottom: 10px;
  color: gray;
}
.link_lists ul {
  list-style: none;
}
.link_lists ul li {
  font-size: 16px;
  margin-bottom: 5px;
}
.news_letter h3 {
  margin-bottom: 10px;
  color: gray;
}
.news_letter input {
  padding: 5px 40px;
  margin-bottom: 10px;
}
.footer_container {
  padding: 30px;
  display: flex;
  justify-content: space-between;
}
.icon_container {
  display: flex;
  gap: 15px;
  font-size: 32px;
}
@media (max-width: 786px) {
  
}