.refo {
            --primary: #009688;
            --primary-dark: #00796b;
            --primary-light: #e0f2f1;
            --dark: #263238;
            --text-gray: #546e7a;
            --bg-light: #f4f7f6;
            --white: #ffffff;
            --border: #eef2f4;
            --dashed-border: #cfd8dc;
        
& * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }& { background: var(--bg-light); color: var(--dark); line-height: 1.6; }& header { background: var(--white); height: 80px; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }& .nav-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 100%; padding: 0 20px; }& .banner-view { width: 100%; height: 280px; position: relative; background: #eceff1; }& .banner-container { width: 100%; height: 260px; overflow: hidden; }& .banner-img { width: 100%; height: 100%; object-fit: cover; }& .banner-edit-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}& .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Slightly lighter than the avatar overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
    z-index: 5;
}& .banner-overlay .overlay-content {
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}& .banner-overlay i {
    font-size: 2rem;
}& .banner-edit-wrapper:hover .banner-overlay {
    opacity: 1;
}& .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}& .banner-edit-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; cursor: pointer; color: white; }& .banner-view:hover .banner-edit-overlay { opacity: 1; }& .identity-bar { background: var(--white); border-bottom: 1px solid var(--border); margin-bottom: 30px; }& .identity-container { max-width: 1200px; margin: 0 auto; padding: 30px 20px; display: flex; align-items: center; gap: 30px; }& .logo-holder { position: relative; width: 130px; height: 130px; flex-shrink: 0; }& .logo-img { width: 100%; height: 100%; border-radius: 16px; object-fit: cover; border: 1px solid var(--border); }& .logo-edit-btn { position: absolute; bottom: -5px; right: -5px; background: white; width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); cursor: pointer; color: var(--text-gray); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }& .identity-info { flex: 1; }& .identity-info h1 { font-size: 2.1rem; font-weight: 800; display: flex; align-items: center; gap: 15px; }& .manage-page-btn { background: var(--primary); color: white; border: none; padding: 10px 22px; border-radius: 10px; font-weight: 700; cursor: pointer; font-size: 0.9rem; transition: 0.3s; display: flex; align-items: center; gap: 8px; text-decoration: none;}& .manage-page-btn:hover { background: var(--primary-dark); }& .main-grid { max-width: 1200px; margin: 0 auto; padding: 0 20px 60px; display: grid; grid-template-columns: 1fr 380px; gap: 30px; }& .card { background: var(--white); border-radius: 16px; border: 1px solid var(--border); padding: 25px; margin-bottom: 25px; }& .card-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f6f8f9; padding-bottom: 12px; margin-bottom: 20px; }& .header-title { display: flex; align-items: center; gap: 12px; font-size: 1.1rem; font-weight: 700; }& .header-title i { color: var(--primary); }& .tag { background: var(--bg-light); border: 1px solid var(--border); padding: 8px 16px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; display: inline-block; margin-right: 8px; margin-bottom: 8px; }& .stat-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }& .stat-icon { width: 42px; height: 42px; background: var(--primary-light); color: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }& .stat-label { display: block; font-size: 0.7rem; font-weight: 800; color: var(--text-gray); text-transform: uppercase; }& .stat-value { font-size: 0.95rem; font-weight: 700; color: var(--dark); }& .regulatory-info-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}& .info-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}& .info-code-badge {
    display: inline-block;
    width: fit-content;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    color: var(--primary-dark);
    background: var(--primary-light);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.88rem;
}@media (max-width: 600px) {& .regulatory-grid {
        grid-template-columns: 1fr !important;
    }& .regulatory-info-group[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }}& .accreditation-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
}& .accreditation-badge i {
    font-size: 0.85rem;
}@media (max-width: 600px) {& .sector-data-wrap div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 8px;
    }}& .skill-tag { display: inline-block; background: var(--primary-light); color: var(--primary-dark); padding: 8px 16px; border-radius: 25px; font-size: 0.85rem; font-weight: 600; margin: 0 6px 10px 0; transition: 0.3s; }& .skill-tag:hover { background: var(--primary); color: white; }
}
