/* Collaboration page specific styles */
.collab-category {
    margin-bottom: 60px;
}

.category-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.category-details {
    flex: 1;
    max-width: 60%;
}

.category-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.category-details p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.category-image {
    flex: 1;
    text-align: center;
    max-width: 40%;
}

.category-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

@media (max-width: 768px) {
    .category-content {
        flex-direction: column;
    }
    
    .category-details,
    .category-image {
        max-width: 100%;
    }
    
    .category-image {
        order: -1;
        margin-bottom: 20px;
    }
}
