/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8fafc;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Герой-секция */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

/* Обновляем стили для логотипа */
.nav-logo {
    display: flex;
    align-items: center;
    height: 70px; /* Высота логотипа */
}

.logo-image {
    height: 100%;
    width: auto;
    max-height: 70px; /* Максимальная высота */
    object-fit: contain;
}

/* Убираем старые стили для текстового логотипа, если они были */
.nav-logo {
    /* Удалите или закомментируйте эти свойства: */
    /* font-size: 1.8rem;
    font-weight: 700;
    color: #1e88e5; */
}
@media (max-width: 768px) {
    .logo-image {
        max-height: 35px; /* Немного меньше на мобильных */
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-height: 30px;
    }
}

/* Навигация */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e88e5;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #1e88e5;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1e88e5;
    transition: width 0.3s;
}

.nav-menu a:hover:after {
    width: 100%;
}

.burger {
    display: none;
    font-size: 1.5rem;
    color: #1e88e5;
    cursor: pointer;
}

/* Основной контент героя */
.hero-content {
    display: flex;
    flex: 1;
    align-items: center;
    padding: 40px 20px;
    gap: 50px;
}

.hero-text {
    flex: 1;
    color: #333;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #1565c0;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

/* Блок с датой */
.date-info {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(21, 101, 192, 0.15);
    max-width: 500px;
    border-left: 5px solid #1e88e5;
}

.date-icon {
    font-size: 3rem;
    color: #1e88e5;
    margin-right: 20px;
}

.date-text p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 5px;
}

.date-text h2 {
    font-size: 2rem;
    color: #1565c0;
    margin: 5px 0;
}

.date-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Форма регистрации */
.registration-form {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.2);
    width: 100%;
    max-width: 400px;
    border-top: 5px solid #1e88e5;
}

.registration-form h3 {
    color: #1565c0;
    margin-bottom: 25px;
    font-size: 1.6rem;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #1e88e5;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1e88e5, #1565c0);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(21, 101, 192, 0.3);
}

.form-note {
    font-size: 0.8rem;
    color: #777;
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}

/* Блоки-заглушки */
.placeholder-section {
    padding: 80px 0;
    background-color: #e3f2fd;
    margin-bottom: 2px;
    text-align: center;
}

.placeholder-section h2 {
    color: #1565c0;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.placeholder-section p {
    font-size: 1.2rem;
    color: #555;
}

/* Адаптивность */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .date-info {
        max-width: 100%;
        justify-content: center;
        margin-bottom: 40px;
    }
    
    .registration-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .burger {
        display: block;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .date-text h2 {
        font-size: 1.6rem;
    }
}
/* Второй блок: О чем вебинар */
.about-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-header {
    margin-bottom: 50px;
}

.about-title {
    font-size: 2.8rem;
    color: #1565c0;
    margin-bottom: 15px;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #666;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-item {
    background: white;
    border-radius: 10px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.about-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.15);
}

.about-item.highlight {
    border-left: 4px solid #1e88e5;
    background: #f0f8ff;
}

.item-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e88e5, #64b5f6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.about-item.highlight .item-icon {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
}

.item-text h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-item {
        padding: 20px;
        gap: 15px;
    }
    
    .item-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .item-text h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .item-text h3 {
        text-align: center;
    }
}

/* Третий блок: Докладчик */
.speaker-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    position: relative;
}

.speaker-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.speaker-photo-container {
    flex-shrink: 0;
}

.speaker-photo {
    width: 250px;
    height: 250px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.2);
}

.speaker-photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.speaker-photo:hover .speaker-photo-image {
    transform: scale(1.05);
}

.speaker-info {
    flex: 1;
}

.speaker-title {
    font-size: 2.8rem;
    color: #1565c0;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.speaker-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #1e88e5;
    border-radius: 2px;
}

.speaker-name {
    font-size: 2.2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.speaker-company {
    font-size: 1.4rem;
    color: #666;
    font-weight: 500;
}

/* Адаптивность для блока докладчика */
@media (max-width: 768px) {
    .speaker-section {
        padding: 50px 0;
    }
    
    .speaker-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .speaker-title {
        font-size: 2.2rem;
    }
    
    .speaker-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .speaker-name {
        font-size: 1.8rem;
    }
    
    .speaker-company {
        font-size: 1.2rem;
    }
    
    .speaker-photo {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .speaker-title {
        font-size: 1.8rem;
    }
    
    .speaker-name {
        font-size: 1.5rem;
    }
    
    .speaker-company {
        font-size: 1.1rem;
    }
    
    .speaker-photo {
        width: 180px;
        height: 180px;
    }
}
/* Четвертый блок: Для кого */
.audience-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
}

.audience-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.audience-title {
    font-size: 2.8rem;
    color: #1565c0;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.audience-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #1e88e5, #64b5f6);
    border-radius: 2px;
}

.audience-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.audience-item {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.audience-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 136, 229, 0.15);
    border-color: #1e88e5;
}

.audience-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1e88e5, #64b5f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.audience-text h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Адаптивность для блока "Для кого" */
@media (max-width: 768px) {
    .audience-section {
        padding: 50px 0;
    }
    
    .audience-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .audience-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .audience-item {
        padding: 25px 15px;
    }
    
    .audience-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .audience-text h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .audience-title {
        font-size: 1.8rem;
    }
    
    .audience-list {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .audience-item {
        padding: 20px;
    }
    
    .audience-text h3 {
        font-size: 1rem;
    }
}

/* Пятый блок: Когда */
/* Обновляем стили для реального QR кода */
.qr-real {
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #1e88e5;
    background: white;
    padding: 10px;
}

/* Если хотите добавить анимацию при наведении */
.qr-image:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.2);
}

/* Для адаптивности добавьте в медиа-запросы */
@media (max-width: 768px) {
    .qr-real {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .qr-real {
        width: 150px;
        height: 150px;
    }
}

.when-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    position: relative;
}

.when-content {
    max-width: 1000px;
    margin: 0 auto;
}

.when-info {
    text-align: center;
    margin-bottom: 60px;
}

.when-title {
    font-size: 2.8rem;
    color: #1565c0;
    margin-bottom: 20px;
}

.when-date {
    font-size: 3rem;
    color: #1e88e5;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.when-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Блок Telegram */
.telegram-block {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.15);
    border-top: 5px solid #1e88e5;
}

.telegram-title {
    font-size: 2rem;
    color: #1565c0;
    text-align: center;
    margin-bottom: 40px;
}

.telegram-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.qr-code {
    flex-shrink: 0;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background: white;
    border: 2px dashed #1e88e5;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-grid {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 10px;
}

.qr-row {
    display: flex;
    gap: 3px;
}

.qr-cell {
    width: 25px;
    height: 25px;
    border-radius: 3px;
}

.qr-cell.dark {
    background: #1e88e5;
}

.qr-cell.light {
    background: #e3f2fd;
}

.qr-note {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-top: 10px;
}

.telegram-info {
    flex: 1;
}

.telegram-icon {
    font-size: 3rem;
    color: #1e88e5;
    margin-bottom: 20px;
}

.telegram-description {
    font-size: 1.3rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1e88e5;
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.telegram-link:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.telegram-text-link {
    color: #666;
    font-size: 1rem;
    margin-top: 15px;
}

.telegram-text-link span {
    color: #1e88e5;
    font-weight: 600;
    font-size: 1.1rem;
    word-break: break-all;
}

/* Адаптивность для блока "Когда" */
@media (max-width: 768px) {
    .when-section {
        padding: 50px 0;
    }
    
    .when-title {
        font-size: 2.2rem;
    }
    
    .when-date {
        font-size: 2.2rem;
    }
    
    .telegram-block {
        padding: 30px;
    }
    
    .telegram-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .telegram-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .qr-placeholder {
        width: 180px;
        height: 180px;
    }
    
    .qr-cell {
        width: 22px;
        height: 22px;
    }
    
    .telegram-icon {
        margin-bottom: 15px;
    }
    
    .telegram-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .when-title {
        font-size: 1.8rem;
    }
    
    .when-date {
        font-size: 1.8rem;
    }
    
    .telegram-block {
        padding: 20px;
    }
    
    .telegram-title {
        font-size: 1.4rem;
    }
    
    .qr-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .qr-cell {
        width: 18px;
        height: 18px;
    }
    
    .telegram-link {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Шестой блок: Розыгрыш */
.contest-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contest-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contest-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.contest-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contest-header {
    text-align: center;
    margin-bottom: 60px;
}

.contest-title {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contest-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.contest-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

/* Условия */
.conditions-block {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.conditions-title {
    font-size: 2rem;
    margin-bottom: 25px;
    color: white;
}

.conditions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.condition-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.condition-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: white;
    color: #1e88e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.condition-text {
    font-size: 1.1rem;
    line-height: 1.5;
    padding-top: 5px;
}

.channel-placeholder {
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: 600;
    font-family: monospace;
}

/* Призы */
.prizes-block {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.prizes-title {
    font-size: 2rem;
    margin-bottom: 25px;
    color: white;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.prize-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.prize-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.prize-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.prize-name {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Футер блока */
.contest-footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contest-note {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Адаптивность для блока "Розыгрыш" */
@media (max-width: 992px) {
    .contest-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .prizes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contest-section {
        padding: 50px 0;
    }
    
    .contest-title {
        font-size: 2.2rem;
    }
    
    .contest-subtitle {
        font-size: 1.1rem;
    }
    
    .conditions-title,
    .prizes-title {
        font-size: 1.6rem;
    }
    
    .conditions-block,
    .prizes-block {
        padding: 25px;
    }
    
    .condition-text {
        font-size: 1rem;
    }
    
    .prize-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contest-title {
        font-size: 1.8rem;
    }
    
    .prizes-grid {
        grid-template-columns: 1fr;
    }
    
    .condition-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .condition-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .prize-icon {
        font-size: 2rem;
    }
    
    .contest-body {
        gap: 20px;
    }
    
    .conditions-block,
    .prizes-block {
        padding: 20px;
    }
}

/* Финальный CTA блок */
.final-cta {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.final-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-title {
    font-size: 2.5rem;
    color: #1565c0;
    margin-bottom: 20px;
}

.final-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.final-registration-form {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.2);
    border-top: 5px solid #1e88e5;
}

.final-registration-form h3 {
    color: #1565c0;
    margin-bottom: 25px;
    font-size: 1.6rem;
}

/* Адаптивность для финального блока */
@media (max-width: 768px) {
    .final-cta {
        padding: 50px 0;
    }
    
    .final-title {
        font-size: 2rem;
    }
    
    .final-registration-form {
        padding: 25px;
    }
}

/* Обновляем стили для hero-bg если нужно */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15; /* Можно регулировать прозрачность */
    z-index: -1;
}


/* Стили для сообщений Бизона */
.bizon-error-message {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}