/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #0a1f2e;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(28, 58, 84, 0.8) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(11, 32, 49, 0.9) 0%, transparent 20%);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    position: relative;
    z-index: 2;
}

/* Анимация снежинок */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0;
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Шапка с логотипом */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(168, 218, 220, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.img-logo img {
    display: block;
  width: 200px;
   text-align: center;
         width: 30%; /* Обязательно задать ширину */
      margin-left: auto;
      margin-right: auto;
}

.logo:hover {
    transform: scale(1.05);
}

.company-info {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #a8dadc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.company-tagline {
    font-size: 16px;
    color: #a8dadc;
    opacity: 0.8;
}

.year-badge {
    background: rgba(230, 57, 70, 0.15);
    border: 2px solid rgba(230, 57, 70, 0.4);
    border-radius: 12px;
    padding: 12px 20px;
    text-align: center;
    min-width: 140px;
}

.year-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #f4a261;
    line-height: 1;
}

.year-text {
    display: block;
    font-size: 14px;
    color: #f1faee;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Основное содержимое */
.content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 40px;
    background: rgba(16, 42, 67, 0.7);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.greeting-header {
    width: 100%;
    margin-bottom: 20px;
}

.greeting-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #a8dadc;
    line-height: 1.3;
    margin-bottom: 20px;
}

.divider {
    width: 180px;
    height: 4px;
    background: linear-gradient(90deg, #e63946, #f4a261);
    border-radius: 2px;
    margin: 0 auto;
}

.year-display {
    margin: 30px 0;
}

.year-2026 {
    font-family: 'Montserrat', sans-serif;
    font-size: 120px;
    font-weight: 900;
    background: linear-gradient(45deg, #e63946, #f4a261, #2a9d8f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.year-subtitle {
    font-size: 24px;
    color: #f4a261;
    font-weight: 600;
    margin-top: 10px;
}

.greeting-text-container {
    max-width: 900px;
    margin: 30px 0 40px;
}

.greeting-text {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #f1faee;
    text-align: left;
}

.highlight {
    color: #f4a261;
    font-weight: 700;
}

.signature {
    align-self: flex-end;
    margin-top: 30px;
    text-align: right;
    width: 100%;
}

.signature-line {
    width: 200px;
    height: 2px;
    background: rgba(168, 218, 220, 0.5);
    margin: 0 0 20px auto;
}

.ceo-name {
    font-size: 24px;
    font-weight: 700;
    color: #a8dadc;
    margin-bottom: 5px;
}

.ceo-title {
    font-size: 18px;
    color: #f1faee;
    opacity: 0.9;
}

.new-year-symbols {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.symbol {
    width: 60px;
    height: 60px;
    background: rgba(244, 162, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #f4a261;
    transition: transform 0.3s ease, background 0.3s ease;
}

.symbol:hover {
    transform: scale(1.1);
    background: rgba(244, 162, 97, 0.2);
}

/* Блок с пожеланиями */
.wishes {
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #a8dadc;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #2a9d8f;
    border-radius: 2px;
}

.wishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.wish-item {
    background: rgba(26, 95, 122, 0.4);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wish-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(26, 95, 122, 0.6);
}

.wish-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #f4a261;
}

.wish-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #a8dadc;
}

.wish-text {
    font-size: 16px;
    line-height: 1.6;
    color: #f1faee;
}

/* Контактная информация */
.contact {
    background: rgba(42, 157, 143, 0.1);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    border: 1px solid rgba(42, 157, 143, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.contact-item i {
    color: #f4a261;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.contact-link, .contact-text {
    color: #f1faee;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #f4a261;
}

/* Футер */
.footer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a5f7a, #2a9d8f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.footer-company {
    font-size: 18px;
    font-weight: 600;
    color: #a8dadc;
}

.footer-text {
    text-align: center;
    color: #a8dadc;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(168, 218, 220, 0.1);
    border-radius: 50%;
    color: #f1faee;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #f4a261;
    color: #0a1f2e;
    transform: translateY(-3px);
}

/* Адаптивность */
@media (max-width: 992px) {
    .year-2026 {
        font-size: 100px;
    }
    
    .greeting-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .year-2026 {
        font-size: 80px;
    }
    
    .content {
        padding: 40px 25px;
    }
    
    .greeting-text {
        font-size: 18px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .signature {
        align-self: center;
        text-align: center;
    }
    
    .signature-line {
        margin: 0 auto 20px;
    }
}

@media (max-width: 576px) {
    .year-2026 {
        font-size: 60px;
    }
    
    .greeting-title {
        font-size: 28px;
    }
    
    .content {
        padding: 30px 20px;
    }
    
    .wishes-grid {
        grid-template-columns: 1fr;
    }
    
    .contact {
        padding: 30px 20px;
    }
    
    .contact-item {
        font-size: 16px;
    }
}f