:root {
  --main-green: #3a7d4f;
}
body{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  margin: 0;
  color: #5a4a2c;
  background: linear-gradient(135deg, #f8f5f0 0%, #e7dac7 100%);
  font-family: "Montserrat", Arial, sans-serif;
}
header{
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  background: rgba(245, 236, 220, 0.97);
  border-bottom: 2px solid #2abc59;
  width: 100%;
}
.logo {
  max-width: 200px;
}
.team-photo{
  max-width: 500px;
  border-radius: 20px;
}
.slogan {
  font-size: 1.5em;
  font-style: italic;
  color: var(--main-green);
  border-bottom: 2px solid #2E7D32;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.footer-info{
  display: flex;
  justify-content: center;
  gap: 80px;
  width: 100%;
  background: rgba(245, 236, 220, 0.97);
  border-top: 2px solid #2abc59;
}
.footer-section{
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.footer-section strong {
  color: var(--main-green);
}
.social {
  background: #f5ecdc;
  padding: 12px 28px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.social strong {
  color: var(--main-green);
}
.social a {
  color: var(--main-green);
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.2s;
}
.social a:hover {
  color: #7d6b4a;
}
@media (max-width: 600px) {
  main {
    padding: 18px 0;
  }
  .team-photo {
    max-width: 100%;
    height: 350px;
  }
  .social {
    padding: 10px 8px;
    flex-direction: column;
    gap: 4px;
  }
  .footer-info {
    flex-direction: column;
    gap: 10px;
  }
  footer {
    font-size: 0.98em;
    padding: 16px 0 12px 0;
  }
}