:root {
            --primary-color: #D32F2F;
            --secondary-color: #1565C0;
            --accent-color: #FFC107;
            --dark-bg: #212121;
            --light-bg: #F5F5F5;
            --text-color: #212121;
            --text-light: #F5F5F5;
            --gray-color: #757575;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--text-light);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--accent-color);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            height: 21px;
            width: 30px;
        }
        
        .burger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--text-light);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(33, 33, 33, 0.8), rgba(33, 33, 33, 0.8)), url('../img/20.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                rgba(211, 47, 47, 0.1),
                rgba(211, 47, 47, 0.1) 10px,
                rgba(21, 101, 192, 0.1) 10px,
                rgba(21, 101, 192, 0.1) 20px
            );
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            padding: 40px;
            background-color: rgba(33, 33, 33, 0.7);
            border-left: 5px solid var(--primary-color);
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: var(--text-light);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 0;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-color);
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--light-bg);
            position: relative;
        }
        
        .about::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: repeating-linear-gradient(
                90deg,
                var(--primary-color),
                var(--primary-color) 20px,
                var(--secondary-color) 20px,
                var(--secondary-color) 40px
            );
        }
        
        .section-title {
            font-size: 36px;
            margin-bottom: 40px;
            text-align: center;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
            width: 100%;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background-color: var(--primary-color);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border: 5px solid var(--primary-color);
            transform: rotate(2deg);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products {
            padding: 100px 0;
            background-color: var(--dark-bg);
            color: var(--text-light);
        }
        
        .products .section-title {
            color: var(--text-light);
        }
        
        .products .section-title::after {
            background-color: var(--accent-color);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background-color: var(--light-bg);
            color: var(--text-color);
            border-radius: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 3px solid var(--primary-color);
            position: relative;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                rgba(211, 47, 47, 0.1),
                rgba(211, 47, 47, 0.1) 10px,
                rgba(21, 101, 192, 0.1) 10px,
                rgba(21, 101, 192, 0.1) 20px
            );
            z-index: 1;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
            position: relative;
            z-index: 2;
        }
        
        .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-info {
            padding: 20px;
            position: relative;
            z-index: 2;
        }
        
        .product-info h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .product-info p {
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: var(--light-bg);
        }
        
        .prices-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }
        
        .price-card {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 30px;
            width: 300px;
            text-align: center;
            border: 3px solid var(--primary-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .price-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                rgba(255, 193, 7, 0.1),
                rgba(255, 193, 7, 0.1) 10px,
                rgba(211, 47, 47, 0.1) 10px,
                rgba(211, 47, 47, 0.1) 20px
            );
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .price-card:hover::before {
            opacity: 1;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .price-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .price {
            font-size: 36px;
            font-weight: bold;
            color: var(--primary-color);
            margin: 20px 0;
        }
        
        .price-card p {
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .price-card .btn {
            margin-top: 15px;
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        
        .price-card .btn:hover {
            background-color: transparent;
            color: var(--secondary-color);
        }
        
        .featured {
            position: relative;
        }
        
        .featured::after {
            content: 'AKCIJA';
            position: absolute;
            top: 15px;
            right: -30px;
            background-color: var(--accent-color);
            color: var(--dark-bg);
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: var(--dark-bg);
            color: var(--text-light);
        }
        
        .gallery .section-title {
            color: var(--text-light);
        }
        
        .gallery .section-title::after {
            background-color: var(--accent-color);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border: 3px solid var(--primary-color);
            height: 250px;
            cursor: pointer;
            transform: rotate(1deg);
            transition: all 0.3s ease;
        }
        
        .gallery-item:nth-child(even) {
            transform: rotate(-1deg);
        }
        
        .gallery-item:hover {
            transform: rotate(0) scale(1.03);
            z-index: 10;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(211, 47, 47, 0.3), rgba(21, 101, 192, 0.3));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover::after {
            opacity: 1;
        }
        
        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background-color: var(--light-bg);
        }
        
        .feedback-slider {
            position: relative;
            margin-top: 50px;
            overflow: hidden;
        }
        
        .feedback-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-card {
            min-width: 100%;
            padding: 30px;
            background-color: var(--dark-bg);
            color: var(--text-light);
            border-radius: 0;
            text-align: center;
            border: 3px solid var(--secondary-color);
            position: relative;
        }
        
        .feedback-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 60px;
            color: var(--primary-color);
            opacity: 0.3;
        }
        
        .feedback-card p {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 18px;
            position: relative;
            z-index: 2;
        }
        
        .feedback-card h4 {
            color: var(--accent-color);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .feedback-card .stars {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .slider-btn {
            background-color: var(--dark-bg);
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            width: 40px;
            height: 40px;
            border-radius: 0;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }
        
        .slider-btn:hover {
            background-color: var(--primary-color);
            color: var(--text-light);
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: var(--dark-bg);
            color: var(--text-light);
        }
        
        .faq .section-title {
            color: var(--text-light);
        }
        
        .faq .section-title::after {
            background-color: var(--accent-color);
        }
        
        .faq-container {
            margin-top: 50px;
        }
        
        .faq-item {
            background-color: var(--light-bg);
            color: var(--text-color);
            border-radius: 0;
            margin-bottom: 15px;
            border: 2px solid var(--primary-color);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            background-color: var(--light-bg);
        }
        
        .faq-question:hover {
            background-color: rgba(211, 47, 47, 0.1);
        }
        
        .faq-question h3 {
            color: var(--primary-color);
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .faq-icon {
            font-size: 20px;
            color: var(--primary-color);
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: rgba(255, 255, 255, 0.9);
        }
        
        .faq-answer p {
            padding-bottom: 20px;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 20px 20px;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        /* Contact Form */
        .contact {
            padding: 100px 0;
            background-color: var(--light-bg);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 30px;
            border-radius: 0;
            border: 3px solid var(--secondary-color);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 2px solid var(--primary-color);
            border-radius: 0;
            color: var(--text-light);
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-btn {
            width: 100%;
            padding: 15px;
            background-color: var(--primary-color);
            color: var(--text-light);
            border: none;
            border-radius: 0;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 50px 0 20px;
            border-top: 5px solid var(--primary-color);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: var(--accent-color);
            margin-bottom: 20px;
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--accent-color);
        }
        
        .footer-contact p {
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 2px solid var(--gray-color);
            font-size: 14px;
            color: var(--gray-color);
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: rgba(211, 47, 47, 0.1);
            border: 2px solid var(--primary-color);
            padding: 20px;
            border-radius: 0;
            margin: 50px 0;
            font-size: 14px;
            color: var(--text-color);
        }
        
        .disclaimer p {
            margin-bottom: 10px;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 20px;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
            z-index: 1001;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            border-top: 3px solid var(--primary-color);
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-text p {
            margin-bottom: 0;
            font-size: 14px;
        }
        
        .cookie-text a {
            color: var(--accent-color);
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 0;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cookie-accept {
            background-color: var(--primary-color);
            color: var(--text-light);
        }
        
        .cookie-accept:hover {
            background-color: var(--secondary-color);
        }
        
        .cookie-decline {
            background-color: transparent;
            color: var(--text-light);
            border: 2px solid var(--text-light);
        }
        
        .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.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1002;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: var(--light-bg);
            padding: 40px;
            border-radius: 0;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 3px solid var(--primary-color);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }
        
        .modal.show .modal-content {
            transform: scale(1);
        }
        
        .modal-content h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .modal-content p {
            margin-bottom: 30px;
            font-size: 18px;
        }
        
        .modal-close {
            background-color: var(--primary-color);
            color: var(--text-light);
            border: none;
            padding: 10px 20px;
            border-radius: 0;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .modal-close:hover {
            background-color: var(--secondary-color);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            
            nav ul.show {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .burger {
                display: flex;
            }
            
            .burger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .burger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .cookie-content {
                flex-direction: column;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .prices-container {
                flex-direction: column;
                align-items: center;
            }
            
            .price-card {
                width: 100%;
                max-width: 300px;
            }
        }

