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

body {
  font-family: Garamond, serif;
  padding: 20px;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;

  img {
    width: 220px;
  }
}



.intro-text {

 p {
   max-width: 1024px;
 }

  .slogan {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-style: italic;
  }

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  text-align: center;
}

.tab-content h2 {
  margin-bottom: 10px;
}

.tab-container {
  background: #fff;
  border: 1px solid #ccc;
  display: flex;
  margin: 0 auto;
  max-width: 1024px;
  overflow: hidden;
  width: 100%;
  min-height: 500px;
  align-items: stretch;
  min-height: 885px;
}

.tab {
  align-items: stretch;
  flex: 1;
  text-decoration: none;

}

.tabs .tab:hover {
  background-color: red;
}

.tabs {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.tabs .tab:first-child {
  background-color: #ff7750;

  &:hover {
    background-color: red;
  }
}

.tabs .tab:nth-child(2) {
  background-color: #ffff25;
  color: black;

  &:hover {
    background-color: #6a6a1c;
  }
}

a {
  color: #00af57;

}



a:hover {
  font-weight: bold;
}


.whatsapp {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  a {
    margin-top: 1rem;
  }
}

.tabs .tab:nth-child(3) {
  background-color: #00af57;
  color: black;

  &:hover {
    background-color: green;
  }
}

.tabs .tab:nth-child(4) {
  background-color: #007d79;
  color: white;

  &:hover {
    background-color: #033e3c;
  }
}

.tabs .tab:nth-child(5) {
  background-color: #ff7750;
  color: white;

  &:hover {
    background-color: #033e3c;
  }
}

.tabs a {
  background: none;
  border: none;
  border-bottom: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  outline: none;
  padding: 15px 20px;
  position: relative;
  text-align: left;
  transition: background 0.3s;
  width: 100%;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.tabs a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
}

.tabs a:last-child::before {
  display: none;
}

.tabs a:hover {
  background-color: #006400;
}

.tabs a.active {
  background-color: #006400;
}

.tabs i {
  margin-right: 5px;
}

.tab-content {
  flex: 1;
  position: relative;
}

.tab-content .content {
  display: none;
  left: 0;
  padding: 2rem;
  top: 0;
  width: 100%;
  font-size: 1.2rem;
}

.content {
  ul {
    li {
      margin: 1rem;
    }
  }
}

.tab-content .content.active {
  display: block;
}

/* Responsive Styles */
@media (max-width: 767px) {
  .tab-container {
    flex-direction: column;
  }

  .tabs {
    width: 100%;
  }


  .tab-content .content {
    position: static;
  }
}

h3 {
  margin-bottom: 1rem;
}
