
.container--guid {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
ol {
  list-style-type: none; 
  counter-reset: num;
  margin: 0 0 0 35px;
  padding: 15px 0 5px 0;
  font-size: 18px;
}
ol li {
  position: relative; 
  margin: 0 0 0 0;
  padding: 0 0 10px 0;
}
ol li:before {
  content: counter(num) '.'; 
  counter-increment: num;
  display: inline-block;  
  position: absolute;
  top: 0px;
  left: -26px;
  width: 20px;    
  color: 00a3cc;
  text-align: right;
}
.container--guid a {
  color: #E63A3A;
  text-decoration: underline;
}
.accordion-body--guid li {
    list-style-type: disc;
}
h1 {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: center;
}

.subtitle {
  font-size: 16px;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

.section {
  margin-bottom: 40px;
}

.section h2 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: bold;
}

.accordion {
  border-top: 1px solid #ddd;
 	min-height: 60px;
 	margin-bottom: 	2rem;
}

.accordion-header {
  background: #f8f8f8;
  border: none;
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-body--guid {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.accordion-body--guid.open {
  padding-top: 10px;
  padding-bottom: 15px;
}

.accordion-header .icon {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}