/* Collaboration Page Specific Styles */

/* PAGE HEADER AND DETAILS */
.page-header {
    background: linear-gradient(135deg, #0a3d2e 0%, #1a7d5e 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    margin-top: -100px;
    /* Counteract body padding */
}

.page-header h1 {
    font-size: 3.5rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #2ecc71, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    font-size: 1.2rem;
    color: #c8f7c5;
}

.page-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.detail-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    /* Reduced from 50px */
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 30px;
    /* Reduced from 40px */
    align-items: flex-start;
    transition: all 0.3s ease;
    border-left: 5px solid #2ecc71;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.detail-icon {
    width: 60px;
    /* Reduced from 80px */
    height: 60px;
    /* Reduced from 80px */
    background: white;
    /* Changed from gradient */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.detail-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.detail-info h2 {
    color: #0a3d2e;
    font-size: 2rem;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.detail-info .subtitle {
    color: #2ecc71;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.detail-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .detail-card {
        flex-direction: column;
        padding: 30px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}