/* CSS стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header стили */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 42, 58, 0.95);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            color: #ffffff;
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .logo:hover {
            color: #00ffcc;
            transition: color 0.3s ease;
        }
        
        .nav {
            display: flex;
        }
        
        .nav ul {
            display: flex;
            list-style: none;
        }
        
        .nav ul li {
            margin-left: 30px;
        }
        
        .nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav ul li a:hover {
            color: #00ffcc;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: #ffffff;
            transition: all 0.3s ease;
        }
        
        /* Hero секция */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(26, 42, 58, 0.7), rgba(26, 42, 58, 0.7)), url('../img/03.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #ffffff;
            padding: 0 20px;
        }
        
        .hero-content {
            max-width: 800px;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #4a9eff;
            color: #ffffff;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.4s;
            animation-fill-mode: both;
        }
        
        .btn:hover {
            background-color: #00ffcc;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* About секция */
        .about {
            padding: 100px 0;
            background-color: #ffffff;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #1a2a3a;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #00ffcc;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 24px;
            color: #1a2a3a;
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products секция */
        .products {
            padding: 100px 0;
            background-color: #f5f7fa;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-content {
            padding: 25px;
        }
        
        .product-content h3 {
            font-size: 22px;
            color: #1a2a3a;
            margin-bottom: 15px;
        }
        
        .product-content p {
            margin-bottom: 20px;
        }
        
        /* Prices секция */
        .prices {
            padding: 100px 0;
            background-color: #ffffff;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease;
            position: relative;
        }
        
        .price-card.featured {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .price-card.featured::before {
            content: 'Najbolj priljubljen';
            position: absolute;
            top: 15px;
            right: -30px;
            background-color: #00ffcc;
            color: #1a2a3a;
            padding: 5px 40px;
            font-weight: 600;
            transform: rotate(45deg);
        }
        
        .price-card:hover {
            transform: translateY(-10px);
        }
        
        .price-header {
            padding: 25px;
            background-color: #1a2a3a;
            color: #ffffff;
        }
        
        .price-card.featured .price-header {
            background-color: #4a9eff;
        }
        
        .price-name {
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .price-value {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .price-period {
            font-size: 16px;
            opacity: 0.8;
        }
        
        .price-features {
            padding: 30px 25px;
        }
        
        .price-feature {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .price-feature::before {
            content: '✓';
            display: inline-block;
            width: 20px;
            height: 20px;
            background-color: #00ffcc;
            color: #1a2a3a;
            border-radius: 50%;
            text-align: center;
            line-height: 20px;
            margin-right: 10px;
            font-weight: bold;
        }
        
        .price-footer {
            padding: 0 25px 30px;
        }
        
        /* Gallery секция */
        .gallery {
            padding: 100px 0;
            background-color: #f5f7fa;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(26, 42, 58, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-text {
            color: #ffffff;
            text-align: center;
            padding: 0 20px;
        }
        
        /* Feedback секция */
        .feedback {
            padding: 100px 0;
            background-color: #ffffff;
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 0 20px;
            text-align: center;
        }
        
        .feedback-text {
            font-size: 18px;
            font-style: italic;
            margin-bottom: 30px;
            position: relative;
            padding: 0 30px;
        }
        
        .feedback-text::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 60px;
            color: #4a9eff;
            opacity: 0.3;
        }
        
        .feedback-text::after {
            content: '"';
            position: absolute;
            right: 0;
            bottom: -40px;
            font-size: 60px;
            color: #4a9eff;
            opacity: 0.3;
        }
        
        .feedback-author {
            font-weight: 600;
            color: #1a2a3a;
        }
        
        .feedback-position {
            color: #666;
            font-size: 14px;
        }
        
        .feedback-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .feedback-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .feedback-dot.active {
            background-color: #4a9eff;
        }
        
        /* FAQ секция */
        .faq {
            padding: 100px 0;
            background-color: #f5f7fa;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: #ffffff;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            padding: 20px 25px;
            background-color: #ffffff;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #1a2a3a;
            transition: background-color 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: #f5f7fa;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: #4a9eff;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: #ffffff;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        
        .faq-answer-content {
            padding: 0 25px 20px;
            color: #666;
        }
        
        /* Contact форма */
        .contact {
            padding: 100px 0;
            background-color: #ffffff;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #1a2a3a;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #4a9eff;
        }
        
        .btn-submit {
            display: block;
            width: 100%;
            padding: 15px;
            background-color: #4a9eff;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .btn-submit:hover {
            background-color: #00ffcc;
        }
        
        /* Footer */
        footer {
            background-color: #1a2a3a;
            color: #ffffff;
            padding: 70px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #00ffcc;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #00ffcc;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: #aaa;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #f5f7fa;
            padding: 20px;
            text-align: center;
            font-size: 14px;
            color: #666;
        }
        
        /* Cookie плашка */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #1a2a3a;
            color: #ffffff;
            padding: 20px;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            padding-right: 20px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        
        .cookie-accept {
            background-color: #00ffcc;
            color: #1a2a3a;
        }
        
        .cookie-accept:hover {
            background-color: #4a9eff;
            color: #ffffff;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: #ffffff;
            border: 1px solid #ffffff;
        }
        
        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }
        
        .modal.show .modal-content {
            transform: scale(1);
        }
        
        .modal-title {
            font-size: 24px;
            margin-bottom: 15px;
            color: #1a2a3a;
        }
        
        .modal-text {
            margin-bottom: 25px;
            color: #666;
        }
        
        .modal-close {
            padding: 10px 20px;
            background-color: #4a9eff;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        
        .modal-close:hover {
            background-color: #00ffcc;
        }
        
        /* Анимации */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #1a2a3a;
                padding: 20px;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }
            
            .nav.show {
                transform: translateX(0);
            }
            
            .nav ul {
                flex-direction: column;
            }
            
            .nav ul li {
                margin: 10px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                padding-right: 0;
                margin-bottom: 15px;
            }
        }

