.sc-c24e2679-container {
    position: relative;
    background-color: #F9FAF8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 11px 40px 33px 40px; /* Increased lateral padding */
}

.sc-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 11px; /* Reduced gap slightly */
    position: relative;
    z-index: 2;
}

.sc-text-col {
    flex: 1;
    min-width: 300px;
}

.sc-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between logo and title */
}

.sc-logo-wrapper {
    display: flex;
    align-items: center;
    max-width: 150px; /* Further reduced width to make lines shorter */
}

.sc-logo-line {
    flex-grow: 1;
    height: 1px;
    background-color: #2B5B53;
}

.sc-logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2B5B53;
    border-radius: 50%;
    margin: 0 10px; /* Reduced line margin to keep lines close */
    overflow: hidden;
    background-color: #fff; /* or match background */
    /* width/height controlled via Elementor settings */
}

.sc-logo-img {
    max-width: 80px; /* Controlled via Elementor settings */
    max-height: 80px;
    display: block;
}

.sc-title {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    color: #1A3B34;
}

.sc-buttons-col {
    display: flex;
    flex-wrap: wrap;
    gap: 11px; /* reduced gap */
}

.sc-button {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* reduced gap */
    padding: 6px 13px; /* reduced padding */
    background: #FFFFFF;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E5E7EB;
}

.sc-button:hover {
    transform: translateY(-2px);
}

.sc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-btn-text {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
}

.sc-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 33px; /* reduced height */
    z-index: 1;
    line-height: 0;
}

.sc-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Mobile Layout Overrides */
@media (max-width: 768px) {
    .sc-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .sc-text-col {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .sc-title-wrapper {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }
    .sc-logo-wrapper {
        margin: 0 auto;
        width: 100%;
        max-width: 150px; /* Keep shorter lines on mobile too */
    }
    .sc-buttons-col {
        justify-content: center;
        width: 100%;
        gap: 8px; /* reduced gap */
    }
    .sc-button {
        flex-direction: column;
        justify-content: center;
        width: calc(50% - 4px); /* Adjusts width to have two buttons side-by-side */
        max-width: 160px; /* Sets a max-width for balance */
        aspect-ratio: 1 / 1; /* Makes them square like the image */
        padding: 11px; /* reduced padding */
        gap: 5px; /* reduced gap */
    }
    .sc-btn-text {
        font-size: 14px; /* Slightly smaller text for mobile square layout */
    }
    .sc-c24e2679-container {
        padding: 11px 30px 33px 30px; /* Increased lateral padding for mobile */
    }
}
