html{
  box-sizing: border-box;
  font-size: 100%;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

*, *::before, *::after{
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

.main-btn{
  background-color: #028855;
  border: none;
  padding: 1rem;
  border-radius: 5px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s ease-in-out; 
  cursor: pointer;

  &:hover{
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  & > a{
    color: white;
    text-decoration: none;
  }
}

.main{
  padding: 2rem 15rem;
}

.title{
  margin: 2rem auto;
  text-align: center;

  & > h1{
    margin: 1rem 0;
  }

  & > p{
    margin: 1rem 0;
    margin-bottom: 3rem;
  }
}

.accordion {
  max-width: 80%;
  margin: auto;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1rem;
}

.accordion-header {
  background-color: #f1f1f1;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: background-color 0.3s ease;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;

  &:hover{
    background-color: #e0e0e0;
  }

  & .icon{
    font-size: 18px;
    transition: transform 0.3s ease;
  }
}

.accordion-header.active .icon{
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 15px;
  background-color: #f9f9f9;
  display: none;
  overflow: hidden;
  transition: max-height 0.3s ease;

  & p{
    margin: 15px 0;
  }
}

@media only screen and (max-width: 1100px){
  .main{
    padding: 2rem 5rem;
  }
}

@media only screen and (max-width: 480px){
  .main{
    padding: 2rem;
  }

  .accordion{
    max-width: 100%;
  }
}