.container {
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  word-spacing: 0.16em;
  letter-spacing: 0.02em;
  font-size: clamp(16px, 1.5vw, 20px);
  background-color: #f8f8f8;
  padding: 0px 1rem;
  position: relative;
  margin-top: 20px;
}

.items {
  position: relative;
  padding: 20px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px; /* Optional: Rounded corners for aesthetics */
}

.title-icon {
  display: flex;
  align-items: center; /* Align icon and text vertically */
  gap: 20px; /* Space between icon and title */
  margin-bottom: 20px; /* Add spacing between the title and content */
}

.icon {
  width: 50px;
  height: 50px;
}

.title {
  color: #0e4668;
  font-size: 2rem;
  padding-bottom: 5px;
  text-align: left;
}

.law {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.law-text {
  width: 70%;
}

.law-img {
  width: 30%;
}

@media(max-width:768px){
  .law{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

}

.diagram {
  background-color: rgb(202, 175, 126);
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  padding: 20px;
}

.box {
  display: flex;
  width: 80%;
  border-radius: 10px;
  padding: 20px;
}
.box1 {
  justify-content: center;
  border: 3px rgb(59, 129, 173) solid;
  background-color: rgb(39, 98, 165);
}
.box2 {
  justify-content: space-evenly;
  background-color: rgb(55, 160, 80);
  border: 3px rgb(33, 101, 49) solid;
}

.box3 {
  justify-content: space-evenly;
  background-color: rgb(171, 64, 99);
  border: 3px rgb(101, 37, 59) solid;
}
.item {
  color: whitesmoke;
  border: 1px rgb(84, 83, 83) solid;
  background-color: rgb(0, 0, 0, 0.4);
  border-radius: 5px;
}

.texts {
  display: flex;
  flex-direction: row;
  gap: 10px;
  position: relative;
}

.txt1 {
  border: 4px rgb(81, 132, 190) solid;
  width: 50%;
  background-color: rgb(165, 188, 218);
  padding: 10px;
}

.txt2 {
  width: 50%;
  border: rgb(198, 105, 105) 4px solid;
  background-color: rgb(208, 143, 143);
  padding: 10px;
}

@media(max-width:768px){
  .texts{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .txt1{width: 100%;}
  .txt2{width: 100%;}
}



.box-describe-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.5rem;
  margin: 1rem auto;
  gap: 1.5rem;
}

.box-describe-container span:nth-child(1) {
  border-left: 1.5rem solid #2762A5;
  padding-left: 0.5rem;
}

.box-describe-container span:nth-child(2) {
  border-left: 1.5rem solid #37A050;
  padding-left: 0.5rem;
}

.box-describe-container span:nth-child(3) {
  border-left: 1.5rem solid #AB4063;
  padding-left: 0.5rem;
}


.hints{
  display: flex;
  justify-content: space-evenly;
  font-style: italic;
}