.sss-container {
    padding: 50px 0;
    max-width: 900px;
}

.sss-header {
    text-align: center;
    margin-bottom: 40px;
}
.sss-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}
.sss-header p {
    font-size: 18px;
    color: #666;
}

.accordion {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}
.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    background-color: #fff;
    border: none;
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f9f9f9;
}

.accordion-header i {
    transition: transform 0.3s ease;
}
.accordion-header.active i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #f9f9f9;
}
.accordion-content p {
    padding: 0 20px 20px 20px;
    line-height: 1.7;
}