* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }
        
        :root {
            --primary-color: #D50000;
            --secondary-color: #212121;
            --accent-color: #FFD600;
            --light-color: #F5F5F5;
            --dark-color: #000000;
            --gray-color: #9E9E9E;
        }
        
        body {
            background-color: var(--light-color);
            color: var(--secondary-color);
            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(--secondary-color);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--light-color);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .logo span {
            color: var(--accent-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: color 0.3s ease;
            position: relative;
            font-weight: 500;
            letter-spacing: 1px;
        }
        
        nav ul li a:hover {
            color: var(--accent-color);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light-color);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background-image: linear-gradient(rgba(33, 33, 33, 0.8), rgba(33, 33, 33, 0.8)), url('../img/18.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--light-color);
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero h1 {
            font-size: 60px;
            margin-bottom: 20px;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            line-height: 1.6;
            font-weight: 300;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 35px;
            background-color: var(--primary-color);
            color: var(--light-color);
            text-decoration: none;
            border-radius: 0;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            border: 2px solid var(--primary-color);
            font-size: 16px;
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        /* Sections */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 42px;
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
        }
        
        .section-title p {
            font-size: 18px;
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
            font-weight: 300;
        }
        
        /* About Section */
        .about {
            background-color: var(--light-color);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }
        
        .about-text p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: var(--gray-color);
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border: 4px solid var(--secondary-color);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Product Description */
        .product-description {
            background-color: var(--secondary-color);
            color: var(--light-color);
        }
        
        .section-title.dark h2 {
            color: var(--light-color);
        }
        
        .section-title.dark p {
            color: var(--gray-color);
        }
        
        .product-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: var(--light-color);
            color: var(--secondary-color);
            border-radius: 0;
            overflow: hidden;
            border: 2px solid var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .card-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary-color), transparent);
            opacity: 0.7;
            z-index: 1;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .card-image img {
            transform: scale(1.1);
        }
        
        .card-content {
            padding: 25px;
        }
        
        .card-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }
        
        .card-content p {
            font-size: 16px;
            line-height: 1.6;
            color: var(--gray-color);
        }
        
        /* Why Us Section */
        .why-us {
            background-color: var(--light-color);
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature {
            background-color: var(--secondary-color);
            color: var(--light-color);
            border-radius: 0;
            padding: 30px;
            text-align: center;
            border: 2px solid var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .feature:hover {
            transform: translateY(-10px);
            background-color: var(--primary-color);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--secondary-color);
            font-size: 30px;
            font-weight: bold;
        }
        
        .feature h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--light-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }
        
        .feature p {
            font-size: 16px;
            line-height: 1.6;
            color: var(--light-color);
        }
        
        /* Pricing Section */
        .pricing {
            background-color: var(--secondary-color);
            color: var(--light-color);
        }
        
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-card {
            background-color: var(--light-color);
            color: var(--secondary-color);
            border-radius: 0;
            overflow: hidden;
            border: 2px solid var(--accent-color);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .pricing-card.featured {
            transform: scale(1.05);
            border: 3px solid var(--primary-color);
        }
        
        .pricing-card.featured::before {
            content: 'POPULAR';
            position: absolute;
            top: 20px;
            right: -30px;
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 14px;
            font-weight: bold;
            letter-spacing: 1px;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-header {
            padding: 30px 20px;
            background-color: var(--secondary-color);
            color: var(--light-color);
        }
        
        .pricing-header h3 {
            font-size: 24px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }
        
        .price {
            font-size: 40px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .price span {
            font-size: 16px;
            font-weight: normal;
        }
        
        .pricing-content {
            padding: 30px 20px;
        }
        
        .pricing-content ul {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .pricing-content ul li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            color: var(--gray-color);
        }
        
        .pricing-content ul li:last-child {
            border-bottom: none;
        }
        
        /* Gallery Section */
        .gallery {
            background-color: var(--light-color);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border: 3px solid var(--secondary-color);
            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: linear-gradient(45deg, rgba(213, 0, 0, 0.8), rgba(33, 33, 33, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay span {
            color: var(--light-color);
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Testimonials Section */
        .testimonials {
            background-color: var(--secondary-color);
            color: var(--light-color);
        }
        
        .testimonials-slider {
            position: relative;
            overflow: hidden;
        }
        
        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial {
            min-width: 100%;
            padding: 0 20px;
            text-align: center;
        }
        
        .testimonial-content {
            background-color: var(--light-color);
            color: var(--secondary-color);
            border-radius: 0;
            padding: 30px;
            border: 2px solid var(--accent-color);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial-text {
            font-size: 18px;
            line-height: 1.8;
            color: var(--gray-color);
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
        }
        
        .testimonial-text::before {
            content: '"';
            font-size: 60px;
            color: var(--primary-color);
            position: absolute;
            top: -20px;
            left: -10px;
            opacity: 0.3;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 2px solid var(--accent-color);
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 18px;
            color: var(--secondary-color);
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .author-info p {
            font-size: 14px;
            color: var(--gray-color);
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--gray-color);
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--primary-color);
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--light-color);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 0;
            overflow: hidden;
            border: 1px solid var(--gray-color);
        }
        
        .faq-question {
            background-color: var(--secondary-color);
            color: var(--light-color);
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: var(--primary-color);
        }
        
        .faq-question h3 {
            font-size: 18px;
            color: var(--light-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }
        
        .faq-icon {
            font-size: 24px;
            color: var(--accent-color);
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            background-color: var(--light-color);
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        .faq-answer p {
            font-size: 16px;
            line-height: 1.6;
            color: var(--gray-color);
        }
        
        /* Team Section */
        .team {
            background-color: var(--secondary-color);
            color: var(--light-color);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            background-color: var(--light-color);
            color: var(--secondary-color);
            border-radius: 0;
            overflow: hidden;
            border: 2px solid var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .member-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .member-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary-color), transparent);
            opacity: 0.3;
            z-index: 1;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.1);
        }
        
        .member-content {
            padding: 25px;
            text-align: center;
        }
        
        .member-content h3 {
            font-size: 22px;
            margin-bottom: 5px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }
        
        .member-content p {
            font-size: 16px;
            margin-bottom: 15px;
            color: var(--gray-color);
        }
        
        .member-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .social-icon {
            width: 36px;
            height: 36px;
            background-color: var(--secondary-color);
            color: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        /* Contact Section */
        .contact {
            background-color: var(--light-color);
        }
        
        .contact-container {
            display: flex;
            justify-content: space-between;
            gap: 50px;
        }
        
        .contact-form {
            flex: 1;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--gray-color);
            border-radius: 0;
            font-size: 16px;
            transition: border-color 0.3s ease;
            background-color: var(--light-color);
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }
        
        .contact-info p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: var(--gray-color);
        }
        
        .contact-details {
            margin-top: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: var(--secondary-color);
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--accent-color);
            font-size: 18px;
        }
        
        .contact-text {
            flex: 1;
        }
        
        .contact-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .contact-text p {
            font-size: 16px;
            color: var(--gray-color);
            margin: 0;
        }
        
        /* Disclaimer Section */
        .disclaimer {
            background-color: var(--secondary-color);
            color: var(--light-color);
            padding: 40px 0;
        }
        
        .disclaimer-content {
            background-color: var(--light-color);
            color: var(--secondary-color);
            border-radius: 0;
            padding: 30px;
            border: 2px solid var(--accent-color);
        }
        
        .disclaimer-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }
        
        .disclaimer-content p {
            font-size: 16px;
            line-height: 1.6;
            color: var(--gray-color);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            flex: 1;
        }
        
        .footer-logo h2 {
            font-size: 24px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .footer-logo p {
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.8;
        }
        
        .footer-links {
            flex: 1;
        }
        
        .footer-links h3 {
            font-size: 18px;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: var(--light-color);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
            opacity: 0.8;
        }
        
        .footer-links ul li a:hover {
            color: var(--accent-color);
            opacity: 1;
        }
        
        .footer-contact {
            flex: 1;
        }
        
        .footer-contact h3 {
            font-size: 18px;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-contact h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            width: 30px;
            height: 30px;
            background-color: var(--secondary-color);
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--accent-color);
            font-size: 14px;
        }
        
        .contact-text {
            flex: 1;
        }
        
        .contact-text p {
            font-size: 16px;
            margin: 0;
            opacity: 0.8;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            font-size: 14px;
            opacity: 0.7;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--secondary-color);
            color: var(--light-color);
            padding: 20px;
            z-index: 1001;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            border-top: 2px solid var(--primary-color);
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .cookie-text {
            flex: 1;
            min-width: 250px;
        }
        
        .cookie-text p {
            font-size: 16px;
            line-height: 1.6;
            margin: 0;
        }
        
        .cookie-text a {
            color: var(--accent-color);
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 0;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }
        
        .cookie-accept {
            background-color: var(--primary-color);
            color: var(--light-color);
        }
        
        .cookie-accept:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color);
        }
        
        .cookie-reject {
            background-color: transparent;
            color: var(--light-color);
            border: 2px solid var(--light-color);
        }
        
        .cookie-reject:hover {
            background-color: var(--light-color);
            color: var(--secondary-color);
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: 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-color);
            border-radius: 0;
            padding: 30px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 2px solid var(--primary-color);
            transform: scale(0.7);
            transition: transform 0.3s ease;
        }
        
        .modal.show .modal-content {
            transform: scale(1);
        }
        
        .modal-content h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }
        
        .modal-content p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: var(--gray-color);
        }
        
        .modal-close {
            background-color: var(--primary-color);
            color: var(--light-color);
            border: none;
            padding: 10px 20px;
            border-radius: 0;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }
        
        .modal-close:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color);
        }
        
        /* Marquee */
        .marquee {
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 15px 0;
            overflow: hidden;
            white-space: nowrap;
        }
        
        .marquee-content {
            display: inline-block;
            animation: marquee 20s linear infinite;
        }
        
        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .fade-in {
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
        }
        
        .fade-up {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .fade-left {
            opacity: 0;
            animation: fadeInLeft 0.8s ease forwards;
        }
        
        .fade-right {
            opacity: 0;
            animation: fadeInRight 0.8s ease forwards;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 48px;
            }
            
            .section-title h2 {
                font-size: 36px;
            }
            
            .about-content,
            .contact-container {
                flex-direction: column;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--secondary-color);
                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: 10px 0;
            }
            
            .burger {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .pricing-card.featured::before {
                top: 10px;
                right: -30px;
                padding: 3px 30px;
                font-size: 12px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 30px;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
        }

