/* Inline Style Sections Frontend Styles */

.style-section {
    position: relative;
    border: 1px solid #ff6b6b;
    border-radius: 0;
    padding: 20px 20px 20px;
    margin: 35px 0 20px;
    background-color: #ffffff;
}

/* Remove top border - we'll create it with pseudo elements */
.style-section {
    border-top: none;
}

/* Create left and right parts of the top border */
.style-section:before,
.style-section:after {
    content: "";
    position: absolute;
    top: 0;
    height: 1px;
    background: #ff6b6b;
}

.style-section:before {
    left: 0;
    width: 30%;
}

.style-section:after {
    right: 0;
    width: 30%;
}

.style-section-title {
    color: #ff6b6b;
    font-size: 32px;
    margin: 0 auto 20px;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
    border-bottom: none;
    position: absolute;
    top: -0.5em;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: auto;
    display: inline-block;
    line-height: 1;
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
    .style-section-title {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .style-section-title {
        font-size: 1rem;
    }
}

.style-section-content {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    padding: 0 10px;
}

.style-section-content ul {
    padding-left: 0;
    margin: 0;
    list-style-type: none;
}

.style-section-content li {
    /* margin-bottom: 20px; */
    position: relative;
    padding-left: 25px;
    color: #555;
    font-size: 16px;
}

.style-section-content li:last-child {
    margin-bottom: 0;
}

.style-section-content li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #333;
    font-size: 18px;
}

.style-section-content {
    margin-top: 30px;
}

/* List styling */
.style-section-content ul,
.style-section-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.style-section-content li,
.style-section-list li {
    /* margin-bottom: 20px; */
    position: relative;
    padding-left: 25px;
    color: #555;
    line-height: 1.6;
}

.style-section-content li:before,
.style-section-list li:before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #ff6b6b;
  /*  font-size: 20px;
    line-height: 1; */
}

/* Paragraph styling */
.style-section-paragraphs p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.style-section-paragraphs p:last-child {
    margin-bottom: 0;
}