.collab-section-wrapper-51 {
    font-family: var(--e-global-typography-text-font-family), sans-serif;
    padding: 60px 20px;
}

.collab-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.collab-column {
    flex: 1;
    min-width: 300px;
}

.collab-left {
    flex-basis: 50%;
}

.collab-right {
    flex-basis: 40%;
}

.collab-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.collab-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.collab-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #E8F5E9;
    color: #2E7D32;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.collab-tag i, .collab-tag svg {
    font-size: 16px;
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.collab-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #1A1A1A;
}

.collab-subheading {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.collab-subheading strong {
    color: #1A1A1A;
    font-weight: 700;
}

.collab-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.collab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--e-global-color-secondary, #6B9A76);
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.collab-btn:hover {
    background-color: #4a6e53;
    transform: translateY(-2px);
    color: #fff;
}

.collab-btn i, .collab-btn svg {
    font-size: 16px;
    width: 16px;
    height: 16px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .collab-container {
        flex-direction: column;
    }
    
    .collab-left, .collab-right {
        flex-basis: 100%;
        width: 100%;
    }
    
    .collab-heading {
        font-size: 32px;
    }
}