* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #fff;
    color: #000;
}

.promo-banner {
    background: linear-gradient(135deg, #ff1744 0%, #e31837 50%, #c41530 100%);
    padding: 18px 0;
    box-shadow: 0 4px 20px rgba(227, 24, 55, 0.4);
    position: relative;
    z-index: 999;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.promo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.promo-icon {
    font-size: 2.5rem;
    color: #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.promo-text {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
}

.promo-text strong {
    font-weight: 700;
    font-size: 1.2rem;
}

.promo-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #e31837;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.promo-btn:hover {
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
    border-color: #fff;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(227, 24, 55, 0.1) 0%, 
        rgba(44, 62, 122, 0.4) 40%, 
        rgba(30, 25, 70, 0.85) 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px 0;
}

.hero-content {
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 
        0 0 20px rgba(227, 24, 55, 0.6),
        0 0 40px rgba(227, 24, 55, 0.4),
        2px 2px 15px rgba(0,0,0,0.9),
        4px 4px 25px rgba(0,0,0,0.7);
    margin: 0;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 
            0 0 20px rgba(227, 24, 55, 0.6),
            0 0 40px rgba(227, 24, 55, 0.4),
            2px 2px 15px rgba(0,0,0,0.9);
    }
    to {
        text-shadow: 
            0 0 30px rgba(227, 24, 55, 0.8),
            0 0 60px rgba(227, 24, 55, 0.6),
            2px 2px 15px rgba(0,0,0,0.9),
            4px 4px 35px rgba(0,0,0,0.8);
    }
}

.hero-info-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    max-width: 1400px;
    margin-bottom: 0;
}

.info-block {
    background: linear-gradient(135deg, rgba(227, 24, 55, 0.15) 0%, rgba(44, 62, 122, 0.15) 100%);
    padding: 35px 30px;
    text-align: left;
    border-right: 2px solid rgba(227, 24, 55, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.info-block:hover {
    background: linear-gradient(135deg, rgba(227, 24, 55, 0.25) 0%, rgba(44, 62, 122, 0.25) 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 24, 55, 0.3);
}

.info-block:last-child {
    border-right: none;
}

.info-block h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(227, 24, 55, 0.5);
}

.info-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.footer {
    background-color: #000;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.newsletter-section {
    background-color: #000;
    padding: 60px 0;
    border-top: 1px solid #333;
}

.newsletter-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.newsletter-text h2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
}

.newsletter-form {
    flex: 1;
}

.newsletter-form p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}

.newsletter-form form {
    display: flex;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 18px 20px;
    background-color: #fff;
    border: none;
    font-size: 0.9rem;
    color: #000;
}

.newsletter-form input[type="email"]::placeholder {
    color: #666;
}

.newsletter-form button {
    padding: 18px 40px;
    background-color: #e31837;
    color: #fff;
    border: none;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background-color: #c41530;
}

.footer-main {
    padding: 60px 0 40px;
    border-top: 1px solid #333;
}

.footer-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #333;
}

.footer-logos {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.logo-cntower img,
.logo-unesco img {
    height: 120px;
    width: auto;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #e31837;
}

.footer-social {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    padding: 40px 0;
}

.social-section h3 {
    font-size: 0.75rem;
    font-weight: 400;
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #e31837;
}

.footer-badges {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-badges img {
    max-width: 80px;
    height: auto;
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-copyright p {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0;
}

.legal-links {
    display: flex;
    gap: 25px;
    flex-wrap: nowrap;
}

.legal-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.legal-links a:hover {
    color: #fff;
}

.promo-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 122, 0.85);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.promo-modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

@keyframes slideUp {
    from {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.promo-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #666;
    font-size: 1.8rem;
    font-weight: 300;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.promo-modal-close:hover {
    background: #fff;
    color: #e31837;
    transform: rotate(90deg);
}

.promo-modal-header {
    background: linear-gradient(135deg, #2c3e7a 0%, #1a2850 100%);
    padding: 35px 30px 30px;
    text-align: center;
    position: relative;
}

.promo-badge {
    display: inline-block;
    background: #e31837;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.promo-modal-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.promo-modal-body {
    padding: 35px 30px;
}

.discount-wrapper {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ec 100%);
    border-radius: 8px;
    border: 2px solid #e31837;
}

.discount-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.discount-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #e31837;
    line-height: 1;
}

.promo-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
}

.promo-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #333;
}

.feature-item i {
    color: #2c3e7a;
    font-size: 1.1rem;
}

.promo-cta {
    text-align: center;
}

.promo-modal-btn {
    display: inline-block;
    background: #e31837;
    color: #fff;
    padding: 16px 45px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(227, 24, 55, 0.3);
}

.promo-modal-btn:hover {
    background: #c41530;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(227, 24, 55, 0.4);
}

.promo-note {
    margin-top: 15px;
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
}

@media (max-width: 1024px) {
    .newsletter-content {
        gap: 50px;
    }
    
    .newsletter-text h2 {
        font-size: 2.8rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .newsletter-text h2 {
        font-size: 2.2rem;
    }
    
    .newsletter-text p {
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-social {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-info-blocks {
        grid-template-columns: 1fr;
    }

    .info-block {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .info-block:last-child {
        border-bottom: none;
    }

    .promo-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .promo-text {
        font-size: 0.95rem;
    }

    .promo-text strong {
        font-size: 1rem;
    }

    .promo-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .newsletter-content {
        padding: 0 16px;
    }
    
    .newsletter-text h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-text p {
        font-size: 0.95rem;
    }
    
    .newsletter-form form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-form input {
        padding: 14px;
        font-size: 1rem;
    }

    .newsletter-form button {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
    }
    
    .footer-column ul li a {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .info-block h3 {
        font-size: 1rem;
    }
    
    .info-block p {
        font-size: 0.85rem;
    }
    
    .promo-icon {
        width: 45px;
        height: 45px;
    }
    
    .promo-text {
        font-size: 0.85rem;
    }
    
    .promo-btn {
        padding: 12px 20px;
        font-size: 0.8rem;
        width: 100%;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
}
