.ss-showcase-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    font-family: inherit;
}

/* Hero Section */
.ss-hero-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.ss-hero-content {
    flex: 1;
    min-width: 300px;
}

.ss-hero-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2.2em;
    font-weight: 700;
}

.ss-hero-image {
    flex: 1;
    min-width: 300px;
}

.ss-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Blocks Row */
.ss-block-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #eaeaea;
}

.ss-block-row:last-child {
    border-bottom: none;
}

.ss-block-col {
    flex: 1;
    min-width: 300px;
}

.ss-block-text h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 700;
}

.ss-block-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* WYSIWYG Content Styling */
.ss-wysiwyg-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.ss-wysiwyg-content ul, 
.ss-wysiwyg-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.ss-wysiwyg-content li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.ss-wysiwyg-content strong {
    font-weight: 600;
}

/* Buttons */
.ss-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #5c8731;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 20px;
    transition: opacity 0.3s ease;
}

.ss-btn:hover {
    opacity: 0.9;
    color: #fff;
}

@media (max-width: 768px) {
    .ss-hero-section,
    .ss-block-row {
        flex-direction: column !important;
    }
}
