.so-accordion {
    max-width: 800px;
    margin: 0 0 0 50px;
}
  
.so-accordion-item {
    background: white;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}
  
.so-accordion-header {
    background-color: #0DAAC4;
    color: white;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
	text-decoration: none !important;
}

.so-accordion-header .so-icon {
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s ease;
}
  
.so-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
    background: #fafafa;
}
  
.so-accordion-content p {
    margin: 15px 0;
}