* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        :root {
            --primary-color: #ff2a6d;
            --secondary-color: #05d9e8;
            --accent-color: #d1f7ff;
            --dark-color: #15161a;
            --light-color: #ffffff;
            --text-color: #e94560;
        }
        
        body {
            background-color: var(--dark-color);
            color: var(--light-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: rgba(21, 22, 26, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--primary-color);
            box-shadow: 0 4px 20px rgba(255, 42, 109, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--secondary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
        }
        
        .logo::before {
            content: "◆";
            margin-right: 10px;
            color: var(--primary-color);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--light-color);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-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;
            width: 30px;
            height: 21px;
        }
        
        .burger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--light-color);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(21, 22, 26, 0.7), rgba(21, 22, 26, 0.9)), url('../img/14.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 50%, rgba(5, 217, 232, 0.2) 0%, transparent 50%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 60px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent-color);
            text-shadow: 0 0 10px rgba(209, 247, 255, 0.5);
            animation: glow 2s infinite alternate;
        }
        
        @keyframes glow {
            from {
                text-shadow: 0 0 10px rgba(209, 247, 255, 0.5);
            }
            to {
                text-shadow: 0 0 20px rgba(209, 247, 255, 0.8), 0 0 30px rgba(5, 217, 232, 0.6);
            }
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: var(--light-color);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: var(--light-color);
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: var(--secondary-color);
            transition: left 0.3s ease;
            z-index: -1;
        }
        
        .btn:hover::before {
            left: 0;
        }
        
        .btn:hover {
            color: var(--dark-color);
            border-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(5, 217, 232, 0.3);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--dark-color);
            position: relative;
        }
        
        .about::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/04.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }
        
        .section-title {
            font-size: 40px;
            text-align: center;
            margin-bottom: 50px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            position: relative;
            z-index: 1;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 30px;
            margin-bottom: 20px;
            color: var(--accent-color);
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--light-color);
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(255, 42, 109, 0.3);
        }
        
        .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: linear-gradient(135deg, rgba(21, 22, 26, 1) 0%, rgba(30, 31, 40, 1) 100%);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background-color: rgba(30, 31, 40, 0.7);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .product-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 42, 109, 0.3);
        }
        
        .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: 20px;
        }
        
        .product-content h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--accent-color);
        }
        
        .product-content p {
            margin-bottom: 20px;
            color: var(--light-color);
        }
        
        /* Prices Section */
        .prices {
            padding: 100px 0;
            background-color: var(--dark-color);
            position: relative;
        }
        
        .prices::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/15.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }
        
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }
        
        .price-card {
            background: linear-gradient(135deg, rgba(30, 31, 40, 0.9) 0%, rgba(40, 42, 54, 0.9) 100%);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            text-align: center;
            padding: 30px;
        }
        
        .price-card.featured {
            transform: scale(1.05);
            border: 2px solid var(--secondary-color);
        }
        
        .price-card.featured::before {
            content: "POPULÁRNE";
            position: absolute;
            top: 15px;
            right: -30px;
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 12px;
            font-weight: bold;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(5, 217, 232, 0.3);
        }
        
        .price-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .price-title {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--accent-color);
        }
        
        .price-value {
            font-size: 40px;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        
        .price-value span {
            font-size: 18px;
            color: var(--light-color);
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .price-features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-color);
        }
        
        .price-features li:last-child {
            border-bottom: none;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(21, 22, 26, 1) 0%, rgba(30, 31, 40, 1) 100%);
        }
        
        .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-radius: 10px;
            height: 250px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 30px rgba(255, 42, 109, 0.3);
        }
        
        .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: linear-gradient(to bottom, transparent 0%, rgba(21, 22, 26, 0.8) 100%);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-text {
            color: var(--light-color);
        }
        
        .gallery-text h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        /* Feedback Section */
        .feedback {
            padding: 100px 0;
            background-color: var(--dark-color);
            position: relative;
        }
        
        .feedback::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/19.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
            overflow: hidden;
            z-index: 1;
        }
        
        .feedback-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 30px;
            background: linear-gradient(135deg, rgba(30, 31, 40, 0.9) 0%, rgba(40, 42, 54, 0.9) 100%);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            text-align: center;
        }
        
        .feedback-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--light-color);
            font-size: 18px;
            line-height: 1.8;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .feedback-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid var(--secondary-color);
        }
        
        .feedback-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .feedback-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--accent-color);
        }
        
        .feedback-info p {
            color: var(--secondary-color);
            font-size: 14px;
        }
        
        .feedback-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .feedback-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .feedback-btn:hover {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            transform: scale(1.1);
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(21, 22, 26, 1) 0%, rgba(30, 31, 40, 1) 100%);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .faq-question {
            padding: 20px;
            background-color: rgba(30, 31, 40, 0.9);
            color: var(--light-color);
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: rgba(40, 42, 54, 0.9);
        }
        
        .faq-question::after {
            content: "+";
            font-size: 24px;
            color: var(--secondary-color);
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: rgba(40, 42, 54, 0.7);
        }
        
        .faq-answer.active {
            max-height: 300px;
        }
        
        .faq-answer p {
            padding: 20px;
            color: var(--light-color);
        }
        
        /* Contact Form */
        .contact {
            padding: 100px 0;
            background-color: var(--dark-color);
            position: relative;
        }
        
        .contact::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/21.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }
        
        .contact-container {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .contact-form {
            background: linear-gradient(135deg, rgba(30, 31, 40, 0.9) 0%, rgba(40, 42, 54, 0.9) 100%);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--accent-color);
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(21, 22, 26, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            color: var(--light-color);
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 10px rgba(5, 217, 232, 0.3);
        }
        
        .form-btn {
            width: 100%;
            padding: 15px;
            background-color: var(--primary-color);
            color: var(--light-color);
            border: none;
            border-radius: 5px;
            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);
            color: var(--dark-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(5, 217, 232, 0.3);
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background: linear-gradient(135deg, rgba(30, 31, 40, 0.95) 0%, rgba(40, 42, 54, 0.95) 100%);
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 2px solid var(--secondary-color);
        }
        
        .modal-content h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--accent-color);
        }
        
        .modal-content p {
            margin-bottom: 30px;
            color: var(--light-color);
        }
        
        .modal-close {
            background-color: var(--primary-color);
            color: var(--light-color);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .modal-close:hover {
            background-color: var(--secondary-color);
            color: var(--dark-color);
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: rgba(30, 31, 40, 0.7);
            padding: 20px;
            margin-top: 50px;
            border-radius: 10px;
            border-left: 4px solid var(--primary-color);
        }
        
        .disclaimer p {
            color: var(--light-color);
            font-size: 14px;
            line-height: 1.6;
        }
        
        /* Footer */
        footer {
            background-color: rgba(21, 22, 26, 0.95);
            padding: 50px 0 20px;
            border-top: 2px 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 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--secondary-color);
            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(--light-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: var(--light-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-color);
            font-size: 14px;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: linear-gradient(135deg, rgba(30, 31, 40, 0.95) 0%, rgba(40, 42, 54, 0.95) 100%);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            transform: translateY(150%);
            transition: transform 0.5s ease;
            border: 1px solid var(--secondary-color);
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            color: var(--light-color);
            font-size: 14px;
            line-height: 1.5;
        }
        
        .cookie-text a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background-color: var(--primary-color);
            color: var(--light-color);
        }
        
        .cookie-accept:hover {
            background-color: var(--secondary-color);
            color: var(--dark-color);
        }
        
        .cookie-reject {
            background-color: transparent;
            color: var(--light-color);
            border: 1px solid var(--light-color);
        }
        
        .cookie-reject:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 50px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .price-card.featured {
                transform: scale(1);
            }
            
            .price-card.featured:hover {
                transform: translateY(-10px);
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(21, 22, 26, 0.95);
                flex-direction: column;
                padding: 20px;
                border-top: 2px solid var(--primary-color);
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .burger {
                display: flex;
            }
            
            .hero h1 {
                font-size: 40px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 30px;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 30px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            
            .gallery-item {
                height: 150px;
            }
        }

