        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #F5F5F5;
            color: #333333;
            line-height: 1.6;
        }
        
        /* Шапка */
        header {
            background-color: #FFFFFF;
            padding: 20px;
            position: fixed;
            width: 100%;
            top: 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            opacity: 1;
            z-index: 1000;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
        }
        
        .nav-links {
            list-style: none;
            display: flex;
            gap: 30px;
        }
        
        .nav-links li a {
            text-decoration: none;
            color: #333333;
            font-size: 16px;
            transition: color 0.3s ease;
        }
        
        .nav-links li a:hover {
            color: #D4AF37;
        }
        
        /* Главная страница */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 50%, #e8eaf6 100%);
            padding: 120px 20px 60px;
            box-sizing: border-box;
            position: relative;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            width: 100%;
            gap: 80px;
        }
        
        .hero-text {
            flex: 1;
            max-width: 550px;
        }
        
        .hero-text h1 {
            font-size: 64px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #333333;
            line-height: 1.1;
            opacity: 0;
            animation: slideInLeft 1s ease-out forwards;
            background: linear-gradient(135deg, #333333, #D4AF37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-text p {
            font-size: 20px;
            margin-bottom: 40px;
            color: #666666;
            line-height: 1.7;
            opacity: 0;
            animation: slideInLeft 1s ease-out 0.3s forwards;
            font-weight: 400;
        }
        
        .hero-text button {
            padding: 20px 40px;
            font-size: 18px;
            background: linear-gradient(135deg, #D4AF37, #f4d03f);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            color: #FFFFFF;
            font-weight: 600;
            transition: all 0.3s ease;
            opacity: 0;
            animation: slideInLeft 1s ease-out 0.6s forwards;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .hero-text button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
            background: linear-gradient(135deg, #f4d03f, #D4AF37);
        }
        
        .hero-image {
            flex: 1;
            max-width: 500px;
            opacity: 0;
            animation: slideInRight 1s ease-out 0.4s forwards;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }
        
        .hero-image img:hover {
            transform: scale(1.02);
        }
        
        /* О компании */
        .about {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 60px;
        }
        
        .about-text {
            max-width: 600px;
        }
        
        .about-text h2 {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 25px;
            opacity: 0;
            animation: slideInLeft 0.8s ease-in forwards;
            color: #D4AF37;
        }
        
        .about-text p {
            font-size: 17px;
            margin-bottom: 25px;
            opacity: 0;
            animation: slideInLeft 0.8s ease-in 0.2s forwards;
            line-height: 1.8;
        }
        
        .about-text blockquote {
            font-style: italic;
            color: #D4AF37;
            font-size: 19px;
            border-left: 4px solid #D4AF37;
            padding-left: 25px;
            opacity: 0;
            animation: slideInLeft 0.8s ease-in 0.4s forwards;
            font-weight: 600;
        }
        
        .about-image img {
    width: 280px;
    height: 380px;
    border-radius: 20px;
    object-fit: cover;
    opacity: 0;
    animation: fadeIn 1s ease-in 0.6s forwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
        
        /* Наши проекты */
        .projects {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .projects h2 {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 25px;
            color: #D4AF37;
        }
        
        .projects p {
            font-size: 20px;
            margin-bottom: 50px;
            color: #666666;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .projects-grid.centered {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 35px;
            margin-top: 40px;
        }
        
        .project-card {
            background-color: #FFFFFF;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            animation: fadeInUp 0.5s ease-in forwards;
            display: flex;
            flex-direction: column;
            min-height: 480px;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 360px;
            margin: 0 auto;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    border-radius: 15px;
    margin-bottom: 25px;
}
        
        .project-card h3 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333333;
        }
        
        .project-card p {
            font-size: 15px;
            flex-grow: 1;
            line-height: 1.7;
            color: #666666;
            margin-bottom: 25px;
            text-align: left;
        }
        
        .details-btn {
            margin-top: auto;
            padding: 14px 28px;
            font-size: 15px;
            background: linear-gradient(45deg, #D4AF37, #F5F5F5);
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #333333;
            display: inline-block;
            text-align: center;
            font-weight: 600;
        }
        
        .details-btn:hover {
            background: linear-gradient(45deg, #C6A88E, #FFFFFF);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        .project-card:nth-child(1) { animation-delay: 0.1s; }
        .project-card:nth-child(2) { animation-delay: 0.2s; }
        .project-card:nth-child(3) { animation-delay: 0.3s; }
        .project-card:nth-child(4) { animation-delay: 0.4s; }
        .project-card:nth-child(5) { animation-delay: 0.5s; }
        .project-card:nth-child(6) { animation-delay: 0.6s; }
        .project-card:nth-child(7) { animation-delay: 0.7s; }
        .project-card:nth-child(8) { animation-delay: 0.8s; }
        
        /* Школа */
        .school {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 40px auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 60px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .school-text {
            max-width: 700px;
        }
        
        .school-text h2 {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 25px;
            opacity: 0;
            animation: slideInLeft 0.8s ease-in forwards;
            color: #D4AF37;
        }
        
        .school-text p {
            font-size: 17px;
            margin-bottom: 20px;
            opacity: 0;
            animation: slideInLeft 0.8s ease-in 0.2s forwards;
            line-height: 1.8;
            color: #555555;
        }
        
        .school-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .school-image img {
            width: 220px;
            height: 220px;
            opacity: 0;
            animation: fadeIn 1s ease-in 0.6s forwards;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
        }
        
        /* Архитектура и технологии */
        .architecture {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 60px;
        }
        
        .architecture-text {
            max-width: 600px;
        }
        
        .architecture-text h2 {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 25px;
            opacity: 0;
            animation: slideInLeft 0.8s ease-in forwards;
            color: #D4AF37;
        }
        
        .architecture-text p {
            font-size: 17px;
            opacity: 0;
            animation: slideInLeft 0.8s ease-in 0.2s forwards;
            line-height: 1.8;
        }
        
        .architecture-image img {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    object-fit: contain;
    opacity: 0;
    animation: fadeIn 1s ease-in 0.4s forwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 20px;
}
        
        /* Стили для модального окна */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: #FFFFFF;
            border-radius: 20px;
            padding: 30px;
            max-width: 650px;
            width: 90%;
            position: relative;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        
        .modal-image {
            width: 100%;
            height: 320px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 20px;
        }
        
        .modal-title {
            font-size: 26px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333333;
        }
        
        .modal-description {
            font-size: 17px;
            margin-bottom: 25px;
            line-height: 1.7;
            color: #666666;
        }
        
        .modal-instagram {
            display: inline-block;
            padding: 14px 28px;
            background: linear-gradient(45deg, #E4405F, #FF6B6B);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .modal-instagram:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(228, 64, 95, 0.4);
        }
        
        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            cursor: pointer;
            color: #999999;
            transition: color 0.3s ease;
        }
        
        .close-btn:hover {
            color: #333333;
        }
        
        /* Производство и партнёры */
        .production {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .production h2 {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 50px;
            color: #D4AF37;
        }
        
        .production-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .production-card {
            background-color: #FFFFFF;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            animation: fadeInUp 0.5s ease-in forwards;
            transition: transform 0.3s ease;
        }
        
        .production-card:hover {
            transform: translateY(-8px);
        }
        
        .production-card:nth-child(1) { animation-delay: 0.1s; }
        .production-card:nth-child(2) { animation-delay: 0.3s; }
        
        .production-card h3 {
            font-size: 26px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #D4AF37;
        }
        
        .production-card p {
            font-size: 17px;
            line-height: 1.7;
            color: #666666;
        }
        
        /* Контакты */
        .contacts {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .contacts h2 {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 25px;
            opacity: 0;
            animation: fadeIn 1s ease-in forwards;
            color: #D4AF37;
        }
        
        .contacts p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeIn 1s ease-in 0.2s forwards;
            color: #666666;
        }
        
        .contacts-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-bottom: 40px;
        }
        
        .contact-form {
            text-align: left;
        }
        
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 18px;
            margin-bottom: 20px;
            border: 2px solid #E0E0E0;
            border-radius: 12px;
            font-size: 16px;
            background-color: #FFFFFF;
            opacity: 0;
            animation: slideInLeft 0.8s ease-in forwards;
            transition: border-color 0.3s ease;
            font-family: 'Montserrat', sans-serif;
        }
        
        .contact-form input:focus, .contact-form textarea:focus {
            outline: none;
            border-color: #D4AF37;
        }
        
        .contact-form input:nth-child(1) { animation-delay: 0.1s; }
        .contact-form input:nth-child(2) { animation-delay: 0.2s; }
        .contact-form textarea { 
            animation-delay: 0.3s; 
            resize: none;
            height: 160px;
        }
        
        .contact-form button {
            padding: 18px 36px;
            font-size: 16px;
            background: linear-gradient(45deg, #D4AF37, #FFFFFF);
            border: none;
            border-radius: 25px;
            cursor: pointer;
            opacity: 0;
            animation: fadeIn 1s ease-in 0.4s forwards;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .contact-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }
        
        .contact-form button:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
            background: linear-gradient(45deg, #999999, #bbbbbb);
        }
        
        .contact-form button:disabled:hover {
            transform: none;
            background: linear-gradient(45deg, #999999, #bbbbbb);
            box-shadow: none;
        }
        
        .contact-map iframe {
            width: 100%;
            height: 320px;
            border-radius: 20px;
            border: none;
            opacity: 0;
            animation: fadeIn 1s ease-in 0.6s forwards;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 25px;
        }
        
        .social-links a {
            display: inline-block;
            width: 60px;
            height: 60px;
            background-color: #D4AF37;
            border-radius: 50%;
            text-align: center;
            line-height: 60px;
            color: #FFFFFF;
            text-decoration: none;
            font-size: 24px;
            opacity: 0;
            animation: fadeInUp 0.5s ease-in forwards;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            transform: translateY(-5px);
            background-color: #C6A88E;
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }
        
        .social-links a:nth-child(1) { animation-delay: 0.1s; }
        .social-links a:nth-child(2) { animation-delay: 0.2s; }
        .social-links a:nth-child(3) { animation-delay: 0.3s; }
        
        /* Футер */
        footer {
            background-color: #FFFFFF;
            padding: 50px 20px;
            border-top: 1px solid #E0E0E0;
            color: #333333;
            margin-top: 60px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
            margin-bottom: 40px;
        }
        
        .footer-column {
            text-align: left;
        }
        
        .footer-column h3 {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #D4AF37;
        }
        
        .footer-nav {
            list-style: none;
        }
        
        .footer-nav li {
            margin-bottom: 12px;
        }
        
        .footer-nav li a {
            text-decoration: none;
            color: #333333;
            font-size: 15px;
            transition: color 0.3s ease;
        }
        
        .footer-nav li a:hover {
            color: #D4AF37;
        }
        
        .footer-column p {
            font-size: 15px;
            margin-bottom: 12px;
            line-height: 1.6;
        }
        
        .footer-column p a {
            color: #D4AF37;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column p a:hover {
            color: #C6A88E;
        }
        
        .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-label {
    font-size: 11px;
    color: #666666;
    margin-top: 5px;
    line-height: 1.2;
}
        
        .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #D4AF37;
    border-radius: 50%;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}
        
        .social-icon:hover {
            background-color: #C6A88E;
            transform: translateY(-3px);
        }

        .social-icon svg {
            width: 24px;
            height: 24px;
            transition: all 0.3s ease;
        }

        .social-icon:hover svg {
            color: #FFFFFF;
        }
        
        .footer-bottom {
            text-align: center;
            font-size: 15px;
            padding-top: 30px;
            border-top: 1px solid #E0E0E0;
        }
        
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: linear-gradient(45deg, #D4AF37, #FFFFFF);
            border: none;
            border-radius: 50%;
            color: #333333;
            font-size: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            background: linear-gradient(45deg, #C6A88E, #FFFFFF);
            transform: translateY(-5px);
        }
        
        /* Анимации */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            cursor: pointer;
        }
        
        .hamburger span {
            width: 100%;
            height: 3px;
            background-color: #333333;
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }
        }
        
        /* Адаптивность для экранов до 1024px (планшеты) */
        @media (max-width: 1024px) {
            .hero-content {
                gap: 40px;
            }
            .hero-text h1 {
                font-size: 48px;
            }
            .hero-text p {
                font-size: 18px;
            }
            .about, .architecture, .school {
                flex-direction: column;
                text-align: center;
            }
                .about-image img {
        width: 220px;
        height: 300px;
    }
    .architecture-image img, .school-image img {
        width: 200px;
        height: 200px;
    }
            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .projects-grid.centered {
                flex-direction: row;
            }
            .production-grid, .contacts-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Адаптивность для экранов до 768px (телефоны) */
        @media (max-width: 768px) {
            .hero {
                padding: 100px 20px 40px;
            }
            .hero-content {
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }
            .hero-text {
                max-width: 100%;
            }
            .hero-text h1 {
                font-size: 40px;
            }
            .hero-text p {
                font-size: 16px;
            }
            .hero-text button {
                padding: 16px 32px;
                font-size: 16px;
            }
            .hero-image {
                max-width: 350px;
                margin: 0 auto;
            }
            .about-text h2, .architecture-text h2, .school-text h2, .projects h2, .production h2, .contacts h2 {
                font-size: 30px;
            }
            .about-text p, .architecture-text p, .school-text p, .projects p, .production-card p, .contacts p {
                font-size: 14px;
            }
            .projects-grid {
                grid-template-columns: 1fr;
            }
            .projects-grid.centered {
                flex-direction: column;
                align-items: center;
            }
            .project-card img {
                height: 150px;
            }
            .contact-form input, .contact-form textarea {
                padding: 10px;
                font-size: 14px;
            }
            .contact-form textarea {
                height: 120px;
            }
            .contact-map iframe {
                height: 250px;
            }
            .social-links a {
                width: 35px;
                height: 35px;
                line-height: 35px;
                font-size: 18px;
            }
            .modal-image {
                height: 200px;
            }
            .modal-title {
                font-size: 20px;
            }
            .modal-description {
                font-size: 14px;
            }
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .about, .school, .architecture {
                padding: 60px 20px;
            }
            .projects, .production, .contacts {
                padding: 60px 20px;
            }
        }
        
        /* Скрытие меню на мобильных устройствах */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background-color: #FFFFFF;
                padding: 20px;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .nav-links li a {
                font-size: 18px;
            }
        }
        
        /* Стили для уведомлений */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            max-width: 400px;
            min-width: 300px;
            z-index: 10000;
            transform: translateX(100%);
            transition: all 0.3s ease;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }
        
        .notification.show {
            transform: translateX(0);
        }
        
        .notification-content {
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
        }
        
        .notification-message {
            flex: 1;
            font-size: 14px;
            line-height: 1.4;
            font-weight: 500;
        }
        
        .notification-close {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.2s ease;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        .notification-close:hover {
            opacity: 1;
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .notification-success {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
        }
        
        .notification-error {
            background: linear-gradient(135deg, #f44336, #d32f2f);
            color: white;
        }
        
        .notification-info {
            background: linear-gradient(135deg, #2196F3, #1976D2);
            color: white;
        }
        
        /* Адаптивные стили для уведомлений */
        @media (max-width: 768px) {
            .notification {
                right: 10px;
                left: 10px;
                max-width: none;
                min-width: auto;
            }
            
            .notification-content {
                padding: 14px 16px;
            }
            
            .notification-message {
                font-size: 13px;
            }
        }