*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    background: white;
    color: black;
}

.site-header__logo-com{
    background-color: green;
    width: 100%;
    height: 70px;
}

.site-header__nav{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  justify-content: space-between;
  background-color: transparent;
  position: fixed;
  top: 70px; 
  left: 0;
  width: 100%;
  background-color: white; 
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: black;
}

.site-header__link{
  color: white;
  text-decoration: none;
  font-size: 25px;
  background-color: #004aad;
  padding: 9px 24px;
  margin: 17px 12px;
  border-radius: 8px;
  font-family: 'Segoe UI', sans-serif;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.site-header__link :hover{
  background-color: #00337a;
}

.site-header__dropdown-content{
  margin-top: 10px;
  padding-top: 0px;
}

.site-header__dropdown{
  padding-top: 21px;
}
.site-header__img {
  height: 100px; 
  width: auto;
}
.site-main{
  margin-top: 150px;
}

.site-main{
  background-color: green;
  height: 200px;
  width: 100%;
  margin-top: 0px;
  padding-bottom: 500px;
  padding-top: 100px;
  border: purple 2px solid;
  
}
.site-main__intro{
  display: block;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer{
  background-color: black;
  width: 100%;
  height: 249px;
}
