.sp-section {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.sp-section:not(:last-child) {
    border-bottom: 2px solid #e2e8f0;
}

.sp-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.sp-section.reverse {
    /* Alternate layout - logo on right */
    flex-direction: row-reverse;
}

.sp-logo-container {
    flex-shrink: 0;
    width: 300px; 
    height: 270px;
    border: 2px solid #4a90a4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    overflow: hidden; 
}

.sp-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.sp-content {
    flex: 1;
}

.sp-title {
    font-size: 26px;
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 15px;
}

.sp-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    text-align: justify;
}

@media (max-width: 768px) {
    .sp-section,
    .sp-section.reverse {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .sp-logo-container {
        width: 120px;
        height: 100px;
        margin: 0 auto;
    }
    
    .sp-title {
        font-size: 22px;
    }
    
    .sp-description {
        font-size: 14px;
        text-align: left;
    }
}