/* ===== WEBINAR HIGHLIGHTS SECTION ===== */
.unq-webinar-highlights {
    background: linear-gradient(135deg, #f8fdf8 0%, #f0f9f0 100%);
    padding: 80px 0;
    position: relative;
}

.unq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.unq-webinar-header {
    text-align: center;
    margin-bottom: 50px;
}

.unq-webinar-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.unq-webinar-title-accent {
    color: #2E8B57;
}

.unq-webinar-intro {
    font-size: 18px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid */
.unq-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Cards */
.unq-highlight-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 139, 87, 0.1);
}

.unq-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 139, 87, 0.12);
    border-color: rgba(46, 139, 87, 0.3);
}

.unq-highlight-featured {
    border: 2px solid #2E8B57;
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.15);
}

/* Icons */
.unq-highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.unq-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.unq-icon-primary {
    color: #2E8B57;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1), rgba(60, 179, 113, 0.2));
}

.unq-icon-secondary {
    color: #4299e1;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.1), rgba(102, 126, 234, 0.2));
}

/* Content */
.unq-highlight-content {
    height: 100%;
}

.unq-highlight-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.unq-highlight-details {
    margin-bottom: 20px;
}

.unq-highlight-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 16px;
    color: #4a5568;
}

.unq-detail-icon {
    width: 18px;
    height: 18px;
    fill: #2E8B57;
}

.unq-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
}

.unq-badge-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.unq-highlight-description {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.5;
}

.unq-highlight-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.unq-highlight-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #4a5568;
}

.unq-check-icon {
    width: 18px;
    height: 18px;
    fill: #2E8B57;
}

/* Responsive */
@media (max-width: 768px) {
    .unq-webinar-highlights {
        padding: 60px 0;
    }
    
    .unq-webinar-main-title {
        font-size: 32px;
    }
    
    .unq-highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .unq-highlight-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .unq-webinar-main-title {
        font-size: 28px;
    }
    
    .unq-webinar-intro {
        font-size: 16px;
    }
    
    .unq-highlight-icon {
        width: 50px;
        height: 50px;
    }
    
    .unq-icon {
        width: 26px;
        height: 26px;
    }
}