 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
     background: linear-gradient(to bottom, #ffffff 0%, #f5f7fa 100%);
     color: #1a1a2e;
     line-height: 1.8;
 }

 .ad-banner {
     background: linear-gradient(135deg, #d4145a 0%, #fbb034 100%);
     color: #fff;
     text-align: center;
     padding: 10px;
     font-size: 11px;
     letter-spacing: 2px;
     font-weight: 700;
     box-shadow: 0 2px 10px rgba(212, 20, 90, 0.3);
 }

 .container {
     max-width: 1100px;
     margin: 0 auto;
     padding: 0 20px;
 }

 header {
     background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
     border-bottom: none;
     padding: 20px 0;
     margin-bottom: 0;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
 }

 .header-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 15px;
 }

 .site-title {
     font-size: 28px;
     font-weight: 800;
     color: #fff;
     font-family: 'Segoe UI', sans-serif;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .nav-links {
     display: flex;
     gap: 30px;
 }

 .nav-links a {
     color: rgba(255, 255, 255, 0.9);
     text-decoration: none;
     font-size: 14px;
     font-weight: 600;
     transition: color 0.3s;
     position: relative;
 }

 .nav-links a:hover {
     color: #fbb034;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: #fbb034;
     transition: width 0.3s;
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .article {
     background: #fff;
     padding: 20px 20px;
     /* margin: 40px auto 40px; */
     box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
     border-radius: 20px;
     position: relative;
 }

 h1 {
     font-size: 42px;
     line-height: 1.2;
     color: #16213e;
     margin-bottom: 30px;
     font-weight: 800;
     font-family: 'Segoe UI', sans-serif;
 }

 .lead-text {
     font-size: 22px;
     line-height: 1.6;
     color: #0f3460;
     margin-bottom: 35px;
     font-weight: 500;
     border-left: 5px solid #d4145a;
     padding-left: 25px;
     background: linear-gradient(to right, rgba(212, 20, 90, 0.05), transparent);
     padding: 20px 25px;
     border-radius: 0 10px 10px 0;
 }

 .article-meta {
     color: #7d8597;
     font-size: 15px;
     /* margin-bottom: 35px; */
     padding-bottom: 20px;
     border-bottom: 2px solid #e8ecf1;
     font-weight: 600;
 }

 .hero-media {
     margin: 30px 0 20px;
     text-align: center;
 }

 .hero-image {
     display: block;
     width: 100%;
     max-width: 720px;
     height: auto;
     margin: 0 auto;
     border-radius: 14px;
     box-shadow: 0 8px 28px rgba(15, 52, 96, 0.12);
     border: 1px solid #e8ecf1;
 }

 .hero-caption {
     max-width: 720px;
     margin: 12px auto 0;
     font-size: 14px;
     line-height: 1.5;
     color: #6b7280;
     text-align: left;
     font-style: italic;
 }

 @media (max-width: 768px) {
     .hero-media {
         margin: 24px 0 18px;
     }

     .hero-image {
         max-width: 100%;
         border-radius: 12px;
         box-shadow: 0 6px 20px rgba(15, 52, 96, 0.10);
     }

     .hero-caption {
         max-width: 100%;
         margin-top: 10px;
         font-size: 13px;
         line-height: 1.45;
         padding: 0 4px;
     }
 }

 @media (max-width: 480px) {
     .hero-media {
         margin: 20px 0 16px;
     }

     .hero-image {
         border-radius: 10px;
     }

     .hero-caption {
         font-size: 12px;
         line-height: 1.4;
         margin-top: 8px;
     }
 }

 .article p {
     font-size: 17px;
     line-height: 1.9;
     margin-bottom: 20px;
     color: #2d3748;
 }

 .article h2 {
     font-size: 32px;
     margin: 45px 0 25px;
     color: #16213e;
     font-weight: 700;
     position: relative;
     padding-bottom: 15px;
 }

 .article h2::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 60px;
     height: 4px;
     background: linear-gradient(90deg, #d4145a, #fbb034);
     border-radius: 2px;
 }

 .highlight-box {
     background: linear-gradient(135deg, #d4145a 0%, #e91e63 100%);
     color: #fff;
     padding: 35px;
     border-radius: 15px;
     margin: 40px 0;
     box-shadow: 0 15px 40px rgba(212, 20, 90, 0.25);
     position: relative;
     overflow: hidden;
 }

 .highlight-box::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
     animation: pulse 3s ease-in-out infinite;
 }

 @keyframes pulse {

     0%,
     100% {
         transform: scale(1);
         opacity: 0.5;
     }

     50% {
         transform: scale(1.1);
         opacity: 0.3;
     }
 }

 .highlight-box h3 {
     font-size: 24px;
     margin-bottom: 18px;
     font-weight: 700;
     position: relative;
     z-index: 1;
 }

 .highlight-box p {
     color: rgba(255, 255, 255, 0.95);
     font-size: 18px;
     line-height: 1.8;
     position: relative;
     z-index: 1;
 }

 .stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 30px;
     margin: 45px 0;
 }

 .stat-box {
     text-align: center;
     padding: 35px 25px;
     background: linear-gradient(135deg, #fff 0%, #f8f9fc 100%);
     border-radius: 15px;
     border: 2px solid #e8ecf1;
     transition: all 0.3s;
     position: relative;
     overflow: hidden;
 }

 .stat-box::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, #d4145a, #fbb034);
 }

 .stat-box:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(212, 20, 90, 0.15);
     border-color: #d4145a;
 }

 .stat-number {
     font-size: 48px;
     font-weight: 900;
     background: linear-gradient(135deg, #d4145a, #fbb034);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     display: block;
     margin-bottom: 12px;
     font-family: 'Segoe UI', sans-serif;
 }

 .stat-label {
     font-size: 14px;
     color: #5a6c7d;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .cta-section {
     background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
     border: none;
     border-radius: 20px;
     padding: 50px;
     margin: 50px 0;
     box-shadow: 0 20px 60px rgba(22, 33, 62, 0.3);
     position: relative;
     overflow: hidden;
 }

 .cta-section::before {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(251, 176, 52, 0.15) 0%, transparent 70%);
     border-radius: 50%;
 }

 .cta-section h2 {
     text-align: center;
     color: #fff;
     font-size: 32px;
     margin-bottom: 15px;
     position: relative;
     z-index: 1;
 }

 .cta-section h2::after {
     display: none;
 }

 .cta-section .subtitle {
     text-align: center;
     color: rgba(255, 255, 255, 0.8);
     font-size: 17px;
     margin-bottom: 40px;
     position: relative;
     z-index: 1;
 }

 .registration-form {
     max-width: 500px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-group label {
     display: block;
     margin-bottom: 10px;
     color: #fff;
     font-weight: 600;
     font-size: 14px;
 }

 .form-group input[type="text"],
 .form-group input[type="email"] {
     width: 100%;
     padding: 16px 20px;
     border: 2px solid rgba(255, 255, 255, 0.2);
     border-radius: 12px;
     font-size: 16px;
     transition: all 0.3s;
     font-family: 'Segoe UI', sans-serif;
     background: rgba(255, 255, 255, 0.95);
     color: #16213e;
 }

 .form-group input:focus {
     outline: none;
     border-color: #fbb034;
     box-shadow: 0 0 0 3px rgba(251, 176, 52, 0.2);
     background: #fff;
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
 }

 .phone-group {
     margin-bottom: 20px;
 }

 .phone-group label {
     display: block;
     margin-bottom: 10px;
     color: #fff;
     font-weight: 600;
     font-size: 14px;
 }

 .iti {
     width: 100%;
 }

 .iti input {
     width: 100%;
     padding: 16px 20px;
     padding-left: 60px;
     border: 2px solid rgba(255, 255, 255, 0.2);
     border-radius: 12px;
     font-size: 16px;
     font-family: 'Segoe UI', sans-serif;
     background: rgba(255, 255, 255, 0.95);
     color: #16213e;
 }

 .consent-group {
     margin: 25px 0;
     display: flex;
     align-items: flex-start;
     gap: 15px;
 }

 .consent-group input[type="checkbox"] {
     margin-top: 5px;
     width: 20px;
     height: 20px;
     cursor: pointer;
 }

 .consent-group label {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.9);
     line-height: 1.6;
 }

 .consent-group a {
     color: #fbb034;
     text-decoration: underline;
 }

 .submit-btn {
     width: 100%;
     padding: 18px;
     background: linear-gradient(135deg, #fbb034 0%, #d4145a 100%);
     color: #fff;
     border: none;
     border-radius: 12px;
     font-size: 18px;
     font-weight: 800;
     cursor: pointer;
     transition: all 0.3s;
     font-family: 'Segoe UI', sans-serif;
     text-transform: uppercase;
     letter-spacing: 1px;
     box-shadow: 0 10px 30px rgba(212, 20, 90, 0.3);
 }

 .submit-btn:hover:not(:disabled) {
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(212, 20, 90, 0.4);
 }

 .submit-btn:disabled {
     background: #94a3b8;
     cursor: not-allowed;
     transform: none;
     box-shadow: none;
 }

 .form-disclaimer {
     text-align: center;
     font-size: 12px;

     margin-top: 20px;
     line-height: 1.6;
 }

 .form-disclaimer a {
     color: #fbb034;
 }

 .disclaimer-section {
     background: linear-gradient(135deg, #fff3e0, #ffe0b2);
     border-left: 5px solid #ff6f00;
     padding: 30px 35px;
     margin: 45px 0;
     border-radius: 10px;
     box-shadow: 0 5px 20px rgba(255, 111, 0, 0.1);
 }

 .disclaimer-section h3 {
     color: #e65100;
     font-size: 20px;
     margin-bottom: 15px;
     font-weight: 800;
 }

 .disclaimer-section p {
     color: #bf360c;
     font-size: 14px;
     line-height: 1.8;
     margin-bottom: 12px;
 }

 footer {
     background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
     color: rgba(255, 255, 255, 0.7);
     padding: 50px 0;
     margin-top: 0;
 }

 .footer-content {
     text-align: center;
 }

 .footer-links {
     margin-bottom: 25px;
 }

 .footer-links a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
     margin: 0 20px;
     font-size: 14px;
     transition: color 0.3s;
     font-weight: 600;
 }

 .footer-links a:hover {
     color: #fbb034;
 }

 .footer-text {
     font-size: 13px;
     line-height: 1.8;
     color: rgba(255, 255, 255, 0.6);
 }

 .footer-text strong {
     color: #fbb034;
 }

 .cookie-banner {
     position: fixed;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(135deg, #16213e, #0f3460);
     box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
     padding: 25px;
     z-index: 10000;
     border-top: 3px solid #fbb034;

     opacity: 0;
     visibility: hidden;
     transform: translateY(100%);
     pointer-events: none;
     transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
 }

 .cookie-banner.show {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
     pointer-events: auto;
 }

 .cookie-content {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 25px;
     flex-wrap: wrap;
 }

 .cookie-text {
     font-size: 14px;
     line-height: 1.5;
     color: rgba(255, 255, 255, 0.9);
     flex: 1;
     min-width: 280px;
 }

 .cookie-text a {
     color: #fbb034;
     text-decoration: underline;
 }

 .cookie-buttons {
     display: flex;
     gap: 15px;
     flex-wrap: wrap;
 }

 .cookie-btn {
     padding: 12px 28px;
     border: 2px solid rgba(255, 255, 255, 0.3);
     border-radius: 8px;
     font-weight: 700;
     cursor: pointer;
     transition: all 0.3s ease;
     font-size: 14px;
 }

 .cookie-btn.accept {
     background: linear-gradient(135deg, #fbb034, #d4145a);
     color: #fff;
     border-color: transparent;
 }

 .cookie-btn.accept:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(212, 20, 90, 0.3);
 }

 .cookie-btn.decline {
     background: transparent;
     color: rgba(255, 255, 255, 0.9);
 }

 .cookie-btn.decline:hover {
     background: rgba(255, 255, 255, 0.1);
 }

 @media (max-width: 768px) {
     .cookie-banner {
         padding: 18px 16px;
     }

     .cookie-content {
         flex-direction: column;
         align-items: stretch;
         gap: 16px;
     }

     .cookie-text {
         font-size: 13px;
         min-width: auto;
     }

     .cookie-buttons {
         width: 100%;
         gap: 10px;
     }

     .cookie-btn {
         flex: 1 1 100%;
         width: 100%;
         padding: 12px 16px;
         font-size: 14px;
     }
 }

 @media (max-width: 480px) {
     .cookie-banner {
         padding: 14px 12px;
     }

     .cookie-text {
         font-size: 12px;
         line-height: 1.45;
     }

     .cookie-btn {
         font-size: 13px;
         padding: 11px 14px;
     }
 }

 .preloader {
     display: none;
     position: fixed;
     inset: 0;
     background: rgba(22, 33, 62, 0.95);
     z-index: 99999;
     justify-content: center;
     align-items: center;
 }

 .preloader.active {
     display: flex;
 }

 .spinner {
     width: 60px;
     height: 60px;
     border: 5px solid rgba(255, 255, 255, 0.2);
     border-top-color: #fbb034;
     border-radius: 50%;
     animation: spin 0.8s linear infinite;
 }

 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }

 @media (max-width: 768px) {
     .nav-links {
         display: none;
     }

     .article {
         padding: 30px 20px;
     }

     h1 {
         font-size: 28px;
     }

     .lead-text {
         font-size: 18px;
     }

     .article p {
         font-size: 16px;
     }

     .form-row {
         grid-template-columns: 1fr;
     }

     .stats-grid {
         grid-template-columns: 1fr;
     }

     .cookie-content {
         flex-direction: column;
         text-align: center;
     }

     .cta-section {
         padding: 25px 20px;
     }
 }

 .cta-wrap {
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 35px 0 45px;
 }

 .cta-button {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-width: 260px;
     padding: 16px 34px;
     border-radius: 14px;
     background: linear-gradient(135deg, #0f3460, #1d4f91);
     color: #ffffff;
     font-size: 18px;
     font-weight: 700;
     line-height: 1;
     text-decoration: none;
     text-align: center;
     box-shadow: 0 10px 30px rgba(15, 52, 96, 0.22);
     transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
     animation: ctaPulse 1.8s infinite ease-in-out;
 }

 .cta-button:hover {
     transform: translateY(-2px) scale(1.04);
     box-shadow: 0 14px 34px rgba(15, 52, 96, 0.28);
     background: linear-gradient(135deg, #12406f, #2660ad);
 }

 .cta-button:active {
     transform: scale(0.98);
 }

 @keyframes ctaPulse {
     0% {
         transform: scale(1);
         box-shadow: 0 10px 30px rgba(15, 52, 96, 0.22);
     }

     50% {
         transform: scale(1.06);
         box-shadow: 0 16px 38px rgba(15, 52, 96, 0.30);
     }

     100% {
         transform: scale(1);
         box-shadow: 0 10px 30px rgba(15, 52, 96, 0.22);
     }
 }

 @media (max-width: 768px) {
     .cta-wrap {
         margin: 28px 0 36px;
         padding: 0 12px;
     }

     .cta-button {
         width: 100%;
         max-width: 320px;
         min-width: auto;
         padding: 15px 24px;
         font-size: 16px;
         border-radius: 12px;
     }
 }

 @media (max-width: 480px) {
     .cta-button {
         max-width: 100%;
         font-size: 15px;
         padding: 14px 20px;
         border-radius: 10px;
     }
 }