/* Russian version specific styles */
body.ru-body {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    direction: ltr;
    text-align: left;
}

.ru-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.ru-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.ru-hero .hero-badges span {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 5px;
    display: inline-block;
}

.ru-hero .cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.ru-hero .formBlock {
    margin-top: 40px;
}

/* Card improvements for Russian version */
.ru-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ru-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Section spacing */
.alexei-section {
    scroll-margin-top: 100px;
}

