.ce-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.ce-accordion {
    border-bottom: 1px solid #eaeaea;
}

.ce-accordion-header {
    padding: 1.5rem;
    background-color: #8A0000;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.ce-accordion-header:hover {
    background-color: #8A0000;
}

.ce-accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.ce-accordion.ce-active .ce-accordion-header::after {
    transform: rotate(45deg);
}

.ce-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.ce-accordion.ce-active .ce-accordion-content {
    max-height: 1500px;
}

.ce-content-inner {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.ce-image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ce-image-wrapper img {
    width: 60%;
    max-width: 400px;
    border-radius: 4px;
    object-fit: cover;
    height: 200px;
}

.ce-content-wrapper {
    width: 100%;
}

.ce-content-section {
    margin-bottom: 1.5rem;
}

.ce-content-section h3 {
    margin-bottom: 0.5rem;
    color: #000;
    font-size: 20px;
}

.ce-content-section ul {
    padding-left: 2rem;
}

.ce-content-section ul li {
    margin-bottom: 0.5rem;
}

.ce-content-section ul li ul {
    margin-top: 0.5rem;
}

@media (max-width: 480px) {
    .ce-image-wrapper img {
        width: 100%;
    }
}