body {
    background: #f8fafc;
    color: #1f2937;
}

.hero {
    background: linear-gradient(135deg, #0d6efd, #4f46e5);
    color: white;
    padding: 60px 0;
}

.hero h1 {
    font-weight: 700;
}

.section-title {
    font-weight: 700;
    color: #0f172a;
}

.step-card {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    height: 100%;
}

.step-badge {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    background: #e0e7ff;
    color: #3730a3;
    margin-bottom: 16px;
}

.highlight-box {
    background: #ffffff;
    border-left: 5px solid #0d6efd;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.timeline-item {
    position: relative;
    padding-left: 24px;
    margin-bottom: 20px;
    border-left: 3px solid #cbd5e1;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: #0d6efd;
    border-radius: 50%;
}

.cta-box {
    background: linear-gradient(135deg, #eff6ff, #eef2ff);
    border: 1px solid #dbeafe;
    border-radius: 18px;
}

footer {
    background: #0f172a;
    color: #cbd5e1;
}

.small-note {
    font-size: 0.95rem;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.language-dropdown .dropdown-toggle {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.language-dropdown .dropdown-toggle:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.language-dropdown .dropdown-menu {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 0.5rem;
    min-width: 200px;
}

.language-dropdown .dropdown-item {
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.language-dropdown .dropdown-item:hover {
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary-color);
}

.language-dropdown .dropdown-item.active {
    background: rgba(0, 212, 255, 0.3);
    color: var(--primary-color);
}

.flag-icon {
    font-size: 1.5rem;
}