body {
    font-family: 'Segoe UI', sans-serif;
}

.hero-bendorma {
    height: 100vh;
    background: 
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
url("https://images.unsplash.com/photo-1519389950473-47ba0277781c");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}


.btn-primary-custom {
    background: linear-gradient(135deg, #4facfe, #00c6ff);
    border: none;
    color: white;
    font-weight: 600;
}

.btn-primary-custom:hover {
    opacity: 0.9;
}

.icon-bendorma {
    font-size: 40px;
    color: #00c6ff;
}

.plan-card {
    border-radius: 15px;
    background: white;
    color: black;
    transition: 0.3s;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.bg-gradient {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}
.dark-mode {
    background-color: #111 !important;
    color: white !important;
}

.dark-mode .card {
    background-color: #222;
    color: white;
}
