.access-header {
    position: relative;
    min-height: 40vh;
    background: linear-gradient(135deg, rgba(63,63,149,0.1) 0%, rgba(44,62,80,0) 100%), url(/assets/img/nacala.jpg) center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.access-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(50,50,120,0.85) 0%, rgba(30,42,60,0.75) 100%);
}

.access-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: var(--border-radius-lg);
    height: 100%;
}

.access-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.access-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: var(--primary-color);
    color: white;
}

.access-icon i {
    font-size: 1.5rem;
}

.access-badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
}