/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== EDUCATIONAL DISCLAIMER ==================== */
.educational-disclaimer {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 3px solid #2196F3;
    padding: 20px;
    margin: 0 0 30px 0;
    border-radius: 12px;
    text-align: center;
    position: relative;
    animation: slideDown 0.5s ease-out;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.15);
}

.educational-disclaimer strong {
    color: #1976D2;
    font-size: 1.1em;
}

.educational-disclaimer .disclaimer-icon {
    font-size: 2em;
    margin-bottom: 10px;
    color: #2196F3;
    display: block;
}

.educational-badge {
    display: inline-block;
    background: #FF9800;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    margin: 10px 0;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.educational-note {
    background: #FFF3E0;
    border: 2px solid #FF9800;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    font-size: 0.9em;
    color: #5D4037;
    text-align: left;
}

.educational-note strong {
    color: #E65100;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.educational-disclaimer .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #2196F3;
    transition: all 0.3s;
}

.educational-disclaimer .close-btn:hover {
    color: #1976D2;
    transform: scale(1.2);
}

.stat-badge {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7em;
    margin-left: 8px;
    vertical-align: middle;
    font-weight: bold;
}

.badge-educational {
    background: #2196F3;
    color: white;
}

.badge-demo {
    background: #FF9800;
    color: white;
}

.data-info-icon {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e3f2fd;
    padding: 5px 10px;
    border-radius: 15px;
    margin: 0 5px;
    font-size: 0.85em;
}

.data-context {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 0.9em;
    color: #555;
    line-height: 1.5;
}

/* ==================== EDUCATIONAL BANNER ==================== */
.educational-banner {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    padding: 15px 0;
    font-size: 0.95em;
    text-align: center;
    position: relative;
    display: block;
    z-index: 1001;
}

.educational-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.educational-icon {
    margin-right: 10px;
    font-size: 1.3em;
    animation: gentleBounce 2s infinite;
}

@keyframes gentleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.educational-link {
    color: #FFD740;
    text-decoration: underline;
    margin-left: 15px;
    font-weight: bold;
    transition: color 0.3s;
}

.educational-link:hover {
    color: #FFAB00;
}

.educational-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 0 10px;
    transition: color 0.3s;
}

.educational-close:hover {
    color: #FFD740;
}

/* ==================== HEADER STYLES ==================== */
.header-simple {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: white;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-simple {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.logo-icon-simple {
    font-size: 32px;
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.logo-text-simple h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: white;
}

.logo-domain-simple {
    color: #4CAF50;
}

.logo-tagline-simple {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
    color: rgba(255,255,255,0.9);
}

.main-nav-simple {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.main-nav-simple a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    position: relative;
}

.main-nav-simple a:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.main-nav-simple a.active {
    background: #2196F3;
    color: white;
    box-shadow: 0 3px 10px rgba(33, 150, 243, 0.3);
}

/* Indicator pentru conținut educațional */
.nav-badge {
    background: #FF9800;
    color: white;
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 10px;
    margin-left: 5px;
    vertical-align: super;
    font-weight: bold;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-login-simple {
    background: #2196F3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 14px;
    flex-shrink: 0;
}

.btn-login-simple:hover {
    background: #1976D2;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    color: #4CAF50;
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #1565C0;
    z-index: 999;
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    transition: background 0.3s;
}

.mobile-menu a:hover {
    background: rgba(255,255,255,0.1);
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, #2196F3 0%, #0D47A1 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.highlight {
    color: #FFD700;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

/* ==================== EDUCATIONAL PROGRESS BAR ==================== */
.educational-progress {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    animation: slideUp 0.5s ease-out;
    border: 2px solid #E3F2FD;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95em;
    color: #555;
}

#progressPercent {
    font-weight: bold;
    color: #1976D2;
}

.progress-bar {
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin: 15px 0;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2196F3, #1976D2);
    border-radius: 6px;
    transition: width 1s ease-in-out;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    text-align: center;
    font-size: 0.85em;
    color: #666;
}

/* ==================== SIMULATED DATA SECTION ==================== */
.simulated-data-section {
    background: linear-gradient(135deg, #E8EAF6 0%, #C5CAE9 100%);
    border: 2px dashed #5C6BC0;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.simulated-counter-display {
    font-size: 3em;
    font-weight: 800;
    color: #3949AB;
    margin: 15px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.simulated-counter-display::after {
    content: 'SIMULAT';
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FF9800;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.community-progress {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2196F3;
}

.stat-note {
    font-size: 0.75em;
    color: #888;
    font-style: italic;
    margin-top: 5px;
    display: block;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: #2196F3;
    color: white;
}

.btn-primary:hover {
    background: #1976D2;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.btn-educational {
    background: #FF9800;
    color: white;
}

.btn-educational:hover {
    background: #F57C00;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.btn-danger {
    background: #f44336;
    color: white;
}

.btn-danger:hover {
    background: #d32f2f;
}

.btn-outline {
    background: transparent;
    border: 2px solid #2196F3;
    color: #2196F3;
}

.btn-outline:hover {
    background: #2196F3;
    color: white;
}

.btn-large {
    padding: 18px 35px;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ==================== STAT CARDS ==================== */
.stat-card {
    background: rgba(255,255,255,0.95);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #E3F2FD;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 2em;
    background: #2196F3;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2em;
    font-weight: bold;
    color: #1565C0;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.stat-label {
    color: #666;
    font-size: 0.9em;
}

.hero-stats {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* ==================== PROGRESS STEPS ==================== */
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #ddd;
    z-index: 1;
}

.progress-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    color: #666;
    border: 3px solid white;
}

.step-number.active {
    background: #2196F3;
    color: white;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.step-label {
    font-size: 0.9em;
    color: #555;
}

/* ==================== EDUCATIONAL CHECK TOOL ==================== */
.educational-check {
    background: white;
    padding: 40px 0;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #E3F2FD;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    color: #1565C0;
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #2196F3;
    margin: 10px auto;
    border-radius: 2px;
}

.check-tool {
    max-width: 800px;
    margin: 0 auto;
}

.check-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.check-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.3s;
    font-family: 'Inter', sans-serif;
}

.check-input:focus {
    border-color: #2196F3;
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.check-button {
    white-space: nowrap;
}

.check-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.check-option {
    background: #f5f5f5;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.check-option:hover,
.check-option.active {
    background: #2196F3;
    color: white;
}

.check-result {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-top: 20px;
    border-left: 4px solid #2196F3;
    animation: fadeIn 0.5s ease-out;
}

.result-safe {
    background: #E8F5E9;
    border-color: #4CAF50;
}

.result-danger {
    background: #FFEBEE;
    border-color: #e74c3c;
}

.result-loading {
    text-align: center;
    color: #666;
    padding: 20px;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.result-header h4 {
    margin: 0;
    font-size: 1.3em;
}

.result-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* ==================== EDUCATIONAL LINKS ==================== */
.educational-links {
    padding: 60px 0;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.link-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 2px solid #E3F2FD;
    display: block;
    height: 100%;
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: #2196F3;
    color: #333;
}

.link-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #2196F3;
}

.link-card h4 {
    margin: 15px 0;
    color: #1565C0;
    font-size: 1.3em;
}

.link-card p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
}

/* ==================== SIMULATED REPORTS SECTION ==================== */
.simulated-reports {
    padding: 60px 0;
    background: white;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.report-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #2196F3;
    transition: all 0.3s;
    height: 100%;
    border: 1px solid #E3F2FD;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.report-type {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    margin-bottom: 15px;
}

.report-type.phishing {
    background: #FFEBEE;
    color: #C62828;
}

.report-type.fake-shop {
    background: #FFF3E0;
    color: #EF6C00;
}

.report-type.smishing {
    background: #E3F2FD;
    color: #1565C0;
}

.report-time {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.report-card h4 {
    margin: 10px 0;
    color: #1565C0;
    font-size: 1.2em;
    line-height: 1.3;
}

.report-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.95em;
}

.report-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.85em;
    color: #666;
}

.report-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works {
    padding: 60px 0;
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: white;
    border-radius: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.how-it-works .section-title {
    color: white;
    text-align: center;
    font-size: 2.5em;
}

.how-it-works .section-title::after {
    background: white;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
    border: 2px solid white;
    transition: all 0.3s;
}

.step:hover .step-number {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.step-content h4 {
    margin: 10px 0;
    font-size: 1.2em;
    color: white;
}

.step-content p {
    opacity: 0.9;
    font-size: 0.9em;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== EDUCATIONAL NEWS SECTION ==================== */
.educational-news {
    padding: 60px 0;
    background: white;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.view-all {
    color: #2196F3;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.view-all:hover {
    color: #1565C0;
    gap: 15px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s;
    border: 2px solid #E3F2FD;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.news-card.urgent {
    border-left: 4px solid #f44336;
}

.news-card.warning {
    border-left: 4px solid #ff9800;
}

.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2196F3;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
}

.news-time {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-card h4 {
    margin: 10px 0;
    color: #1565C0;
    font-size: 1.2em;
    line-height: 1.3;
}

.news-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-link {
    color: #2196F3;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.news-link:hover {
    gap: 15px;
}

/* ==================== FINAL EDUCATIONAL CTA ==================== */
.final-educational {
    padding: 80px 0;
    background: #1565C0;
    color: white;
    text-align: center;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.final-educational::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.educational-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.educational-content h3 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: white;
}

.educational-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.5;
}

.educational-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.educational-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 20px;
    min-width: 150px;
}

.stat .number {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFD740;
    margin-bottom: 5px;
}

.stat .label {
    margin-top: 10px;
    font-size: 0.9em;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== SIMULATED MAP SECTION ==================== */
.simulated-map {
    padding: 60px 0;
    background: #f8f9fa;
}

.map-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 30px;
    border: 2px solid #E3F2FD;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
    color: #666;
}

.legend-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.legend-item.high .legend-dot {
    background: #f44336;
}

.legend-item.medium .legend-dot {
    background: #ff9800;
}

.legend-item.low .legend-dot {
    background: #4CAF50;
}

.educational-map {
    position: relative;
    height: 400px;
    background: #E3F2FD;
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 0;
    border: 2px dashed #90CAF9;
}

.region {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #2196F3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    border: 3px solid white;
}

.region:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 10;
}

.region.selected {
    background: #1565C0;
    transform: scale(1.2);
    z-index: 2;
}

/* Position regions (approximate Romania map) */
.region.bucuresti {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.region.cluj {
    top: 25%;
    left: 30%;
}

.region.timis {
    top: 40%;
    left: 20%;
}

.region.iasi {
    top: 20%;
    left: 70%;
}

.region.constanta {
    top: 50%;
    left: 80%;
}

.region.brasov {
    top: 35%;
    left: 55%;
}

.region.galati {
    top: 35%;
    left: 75%;
}

.region.dolj {
    top: 55%;
    left: 25%;
}

.map-info {
    text-align: center;
    padding: 20px;
    background: #F5F5F5;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
}

/* ==================== REAL INSTITUTIONS SECTION ==================== */
.real-institutions {
    padding: 60px 0;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.institutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.institution-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    border: 2px solid #E3F2FD;
    height: 100%;
}

.institution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #2196F3;
}

.institution-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    display: block;
    color: #2196F3;
}

.institution-card h4 {
    margin: 15px 0;
    color: #1565C0;
    font-size: 1.3em;
}

.institution-card p {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 20px;
    line-height: 1.5;
}

.institution-link {
    color: #2196F3;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9em;
    transition: gap 0.3s;
}

.institution-link:hover {
    gap: 15px;
}

.educational-disclaimer-box {
    background: #FFF3E0;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    border-left: 4px solid #FF9800;
    margin-top: 40px;
}

.disclaimer-icon {
    font-size: 2.5em;
    flex-shrink: 0;
    color: #FF9800;
}

.disclaimer-content h5 {
    margin: 0 0 15px 0;
    color: #5D4037;
    font-size: 1.2em;
}

.disclaimer-content p {
    color: #5D4037;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1em;
}

.disclaimer-link {
    color: #FF9800;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1em;
}

.disclaimer-link:hover {
    text-decoration: underline;
    gap: 12px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #1565C0;
    color: white;
    padding: 50px 0 20px;
    margin-top: auto;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2196F3, #FF9800);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #FFD740;
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: #E3F2FD;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s;
    padding: 5px 0;
}

.footer-col a:hover {
    color: #FFD740;
    padding-left: 5px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFD740;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-description {
    color: #BBDEFB;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #2196F3;
    transform: translateY(-3px);
}

.newsletter-section {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.newsletter-input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: rgba(255,255,255,0.9);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.newsletter-input:focus {
    outline: 2px solid #2196F3;
    background: white;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left p {
    color: #BBDEFB;
    margin: 5px 0;
}

.footer-extra {
    color: #FFD740 !important;
    font-size: 0.9em;
}

.footer-bottom-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: #BBDEFB;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9em;
}

.footer-link:hover {
    color: #FFD740;
}

/* ==================== NO-COOKIE BANNER ==================== */
.no-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1565C0;
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    animation: slideUp 0.5s ease-out;
}

.no-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.no-cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.no-cookie-content strong {
    color: #FFD740;
}

.no-cookie-content a {
    color: #FFD740;
    text-decoration: none;
    font-weight: 600;
}

.no-cookie-content a:hover {
    text-decoration: underline;
}

.no-cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.no-cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.no-cookie-buttons button:first-child {
    background: rgba(255,255,255,0.1);
    color: white;
}

.no-cookie-buttons button:first-child:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.no-cookie-buttons button:last-child {
    background: #FF9800;
    color: white;
}

.no-cookie-buttons button:last-child:hover {
    background: #F57C00;
    transform: translateY(-2px);
}

/* ==================== MODAL STYLES ==================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: modalAppear 0.3s ease-out;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #e74c3c;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

@keyframes counterPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.counter-update {
    animation: counterPulse 0.3s ease-in-out;
    color: #1976D2 !important;
}

.fade-out {
    animation: fadeOut 0.3s ease-in-out forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; display: none; }
}

/* ==================== EDUCATIONAL BADGES ==================== */
.educational-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    margin: 10px;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.simulated-badge {
    display: inline-block;
    background: #FF9800;
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.7em;
    font-weight: bold;
    margin-left: 5px;
    vertical-align: middle;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .main-nav-simple {
        display: none;
    }
    
    .btn-login-simple {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo-text-simple h1 {
        font-size: 18px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .no-cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .check-input-group {
        flex-direction: column;
    }
    
    .check-button {
        width: 100%;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .institutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-text-simple h1 {
        font-size: 16px;
    }
    
    .logo-tagline-simple {
        font-size: 10px;
    }
    
    .educational-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .educational-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .footer-bottom-right {
        justify-content: center;
    }
    
    .no-cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .educational-disclaimer-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .institutions-grid {
        grid-template-columns: 1fr;
    }
    
    .check-options {
        flex-direction: column;
    }
    
    .check-option {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 1.8em;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1.5em;
    }
    
    .simulated-counter-display {
        font-size: 2.5em;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.lead {
    font-size: 1.25em;
    color: #666;
    margin-bottom: 30px;
}

.text-center {
    text-align: center;
}

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.p-20 { padding: 20px; }
.p-30 { padding: 30px; }
.p-40 { padding: 40px; }

.text-success { color: #4CAF50; }
.text-danger { color: #e74c3c; }
.text-warning { color: #ff9800; }
.text-info { color: #2196F3; }

.bg-light { background: #f8f9fa; }
.bg-white { background: white; }

.rounded { border-radius: 10px; }
.rounded-lg { border-radius: 15px; }

.shadow-sm { box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.shadow { box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
.shadow-lg { box-shadow: 0 10px 25px rgba(0,0,0,0.15); }

.table-responsive {
    overflow-x: auto;
}

/* ==================== EDUCATIONAL HIGHLIGHTS ==================== */
.educational-note-box {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFECB3 100%);
    border: 2px solid #FF9800;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
}

.educational-note-box::before {
    content: '📚 EDUCAȚIONAL';
    position: absolute;
    top: -12px;
    left: 20px;
    background: #FF9800;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: bold;
}

.simulated-note {
    background: #E3F2FD;
    border: 2px dashed #2196F3;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    font-size: 0.9em;
    color: #1565C0;
    text-align: center;
}

.simulated-note strong {
    color: #0D47A1;
}