 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #000;
            overflow-x: hidden;
            color: #fff;
        }

        .navbar {
            background-color: #000;
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #222;
            flex-wrap: wrap;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .logo {
            width: 120px;
            height: auto;
        }

        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-menu a:hover {
            color: #8dc63f;
        }

        .dropdown-icon {
            font-size: 12px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .top-links {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .top-links a {
            color: #aaa;
            text-decoration: none;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .top-links a:hover {
            color: #fff;
        }

        .icon {
            font-size: 14px;
        }

        .search-box {
            position: relative;
        }

        .search-input {
            background-color: transparent;
            border: 1px solid #444;
            border-radius: 4px;
            padding: 8px 15px 8px 35px;
            color: #fff;
            width: 250px;
            font-size: 14px;
        }

        .search-input::placeholder {
            color: #888;
        }

        .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
            font-size: 16px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #fff;
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .nav-left {
                gap: 20px;
            }

            .nav-menu {
                gap: 20px;
            }

            .top-links {
                gap: 15px;
            }

            .top-links a {
                font-size: 12px;
            }

            .search-input {
                width: 180px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }

            .hamburger {
                display: flex;
            }

            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 15px;
                padding: 20px 0;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-right {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 15px;
                padding: 20px 0;
            }

            .nav-right.active {
                display: flex;
            }

            .top-links {
                flex-direction: column;
                width: 100%;
                gap: 10px;
            }

            .top-links a {
                width: 100%;
            }

            .search-box {
                width: 100%;
            }

            .search-input {
                width: 100%;
            }

            .logo {
                width: 100px;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 12px 15px;
            }

            .logo {
                width: 80px;
            }

            .nav-menu a {
                font-size: 14px;
            }

            .top-links a {
                font-size: 11px;
            }
        }

        /* Header Styles */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            background-color: #000;
            position: relative;
            z-index: 100;
        }

        .logo img {
            height: 30px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-links a:hover {
            color: #a3ff12;
        }

        .search-box {
            background-color: #1a1a1a;
            padding: 8px 15px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .search-box input {
            background: transparent;
            border: none;
            color: #fff;
            outline: none;
            width: 200px;
        }

        /* Hero Section with Video Background */
        .hero-section {
            position: relative;
            height: 600px;
            overflow: hidden;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(139,69,255,0.3));
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            padding: 100px 50px;
            max-width: 700px;
        }

        .hero-content h2 {
            font-size: 14px;
            letter-spacing: 2px;
            margin-bottom: 20px;
            font-weight: normal;
        }

        .hero-content h1 {
            font-size: 60px;
            line-height: 1.1;
            margin-bottom: 30px;
            font-weight: bold;
        }

        .cta-button {
            background-color: #a3ff12;
            color: #000;
            padding: 15px 30px;
            text-decoration: none;
            display: inline-block;
            font-weight: bold;
            font-size: 16px;
            border-radius: 5px;
            transition: all 0.3s;
        }

        .cta-button:hover {
            background-color: #8ee000;
            transform: translateY(-2px);
        }

        /* Hero Controls */
        .hero-controls {
            position: absolute;
            bottom: 30px;
            left: 50px;
            z-index: 3;
            display: flex;
            gap: 20px;
        }

        .control-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid #fff;
            background: transparent;
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .control-btn:hover {
            background: #fff;
            color: #000;
        }

        .nav-controls {
            position: absolute;
            bottom: 30px;
            right: 50px;
            z-index: 3;
            display: flex;
            gap: 10px;
        }

        /* Product Grid */
        .product-grid {
            padding: 50px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-card {
            background-color: #1a1a1a;
            padding: 40px 20px;
            text-align: center;
            border-radius: 10px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .product-card:hover {
            background-color: #252525;
            transform: translateY(-5px);
        }

        .product-card img {
            width: 120px;
            height: 120px;
            object-fit: contain;
            margin-bottom: 20px;
        }

        .product-card h3 {
            font-size: 18px;
            font-weight: normal;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content h1 {
                font-size: 48px;
            }

            .product-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
                flex-wrap: wrap;
            }

            .nav-links {
                gap: 15px;
                font-size: 12px;
            }

            .search-box input {
                width: 150px;
            }

            .hero-section {
                height: 500px;
            }

            .hero-content {
                padding: 60px 20px;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .hero-controls {
                left: 20px;
            }

            .nav-controls {
                right: 20px;
            }

            .product-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 15px;
                padding: 20px;
            }

            .product-card {
                padding: 30px 15px;
            }

            .product-card img {
                width: 80px;
                height: 80px;
            }

            .product-card h3 {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 28px;
            }

            .nav-links {
                display: none;
            }

            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Featured Products Section */
        .featured-section {
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #333;
        }

        .tab-buttons {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .tab-btn {
            background-color: #fff;
            color: #000;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
        }

        .tab-btn:hover {
            background-color: #00bcd4;
            color: #fff;
        }

        .tab-btn.dark {
            background-color: #2a2a2a;
            color: #fff;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

        .product-card {
            background-color: #2a2a2a;
            padding: 20px;
            position: relative;
            transition: transform 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .new-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: #00bcd4;
            color: #000;
            padding: 5px 15px;
            font-size: 12px;
            font-weight: bold;
        }

        .product-image {
            width: 100%;
            height: 200px;
            object-fit: contain;
            margin-bottom: 20px;
        }

        .product-title {
            font-size: 24px;
            color: #a4ff00;
            font-weight: bold;
            margin-bottom: 10px;
            text-align: center;
        }

        .product-subtitle {
            font-size: 14px;
            color: #ccc;
            text-align: center;
        }

        .nav-buttons {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        .nav-btn {
            background-color: transparent;
            border: 2px solid #fff;
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.3s;
        }

        .nav-btn:hover {
            background-color: #fff;
            color: #000;
        }

        /* Insights Section */
        .insights-section {
            margin-top: 60px;
        }

        .insights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

        .insight-card {
            background-color: #1a1a1a;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .insight-card:hover {
            transform: translateY(-5px);
        }

        .insight-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .insight-content {
            padding: 25px;
        }

        .insight-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .insight-text {
            font-size: 14px;
            color: #bbb;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .read-more {
            display: inline-block;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            border-bottom: 2px solid #fff;
            padding-bottom: 5px;
            transition: color 0.3s, border-color 0.3s;
        }

        .read-more:hover {
            color: #00bcd4;
            border-color: #00bcd4;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 24px;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 15px;
            }

            .insights-grid {
                grid-template-columns: 1fr;
            }

            .product-title {
                font-size: 20px;
            }

            .insight-title {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 10px;
            }

            .section-title {
                font-size: 20px;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .tab-btn {
                padding: 8px 15px;
                font-size: 13px;
            }

            .product-image {
                height: 150px;
            }
        }

        .celebration-section {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            background-color: #000;
            overflow: hidden;
        }

        .image-container {
            background-color: #c30019;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px;
            position: relative;
        }

        .anniversary-image {
            width: 100%;
            height: auto;
            max-width: 500px;
            object-fit: contain;
        }

        .content-container {
            background-color: #3a3a3a;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .eyebrow {
            font-size: 13px;
            letter-spacing: 3px;
            color: #ccc;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .main-heading {
            font-size: 48px;
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .description {
            font-size: 16px;
            line-height: 1.7;
            color: #d4d4d4;
            margin-bottom: 25px;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #c6ff00;
            color: #000;
            padding: 15px 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            align-self: flex-start;
        }

        .cta-button:hover {
            background-color: #d4ff33;
            transform: translateX(5px);
        }

        .arrow {
            font-size: 20px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .content-container {
                padding: 60px 40px;
            }

            .main-heading {
                font-size: 40px;
            }

            .image-container {
                padding: 40px;
            }
        }

        @media (max-width: 768px) {
            .celebration-section {
                grid-template-columns: 1fr;
            }

            .image-container {
                padding: 40px 20px;
                min-height: 300px;
            }

            .content-container {
                padding: 40px 30px;
            }

            .main-heading {
                font-size: 36px;
            }

            .description {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .content-container {
                padding: 30px 20px;
            }

            .main-heading {
                font-size: 28px;
            }

            .eyebrow {
                font-size: 11px;
            }

            .description {
                font-size: 14px;
            }

            .cta-button {
                padding: 12px 25px;
                font-size: 14px;
            }

            .image-container {
                padding: 30px 20px;
                min-height: 250px;
            }
        }


        .r-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .r-heading {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            margin-bottom: 30px;
            font-weight: bold;
        }

        .r-news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .r-news-card {
            background-color: #1a1a1a;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .r-news-card:hover {
            transform: translateY(-5px);
        }

        .r-news-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .r-news-content {
            padding: 25px;
        }

        .r-news-title {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            margin-bottom: 15px;
            line-height: 1.3;
            font-weight: bold;
        }

        .r-news-description {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #ccc;
            margin-bottom: 20px;
        }

        .r-read-article {
            display: inline-block;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            border-bottom: 2px solid #7ed321;
            padding-bottom: 2px;
            transition: color 0.3s ease;
        }

        .r-read-article:hover {
            color: #7ed321;
        }

        .r-navigation {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            margin-bottom: 40px;
        }

        .r-nav-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid #fff;
            background-color: transparent;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .r-nav-button:hover {
            background-color: #fff;
            color: #000;
        }

        .r-support-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .r-support-card {
            padding: 40px;
            border-radius: 8px;
        }

        .r-support-card.r-assistance {
            background-color: #5bc0de;
            color: #000;
        }

        .r-support-card.r-products {
            background-color: #5bc0de;
            color: #000;
        }

        .r-support-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 20px;
            font-weight: bold;
        }

        .r-support-description {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .r-support-button {
            display: inline-block;
            background-color: #000;
            color: #fff;
            padding: 15px 30px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

        .r-support-button:hover {
            background-color: #333;
        }

        .r-support-button::after {
            content: ' ›';
            margin-left: 10px;
        }

        @media (max-width: 768px) {
            .r-container {
                padding: 30px 15px;
            }

            .r-news-grid {
                grid-template-columns: 1fr;
            }

            .r-news-image {
                height: 200px;
            }

            .r-navigation {
                justify-content: center;
            }

            .r-support-section {
                grid-template-columns: 1fr;
            }

            .r-support-card {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .r-news-content {
                padding: 20px;
            }

            .r-support-card {
                padding: 25px 15px;
            }
        }

        .r-why-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .r-why-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            margin-bottom: 40px;
            font-weight: bold;
        }

        .r-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 80px;
        }

        .r-feature-card {
            background-color: #2a2a2a;
            padding: 50px 30px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .r-feature-card:hover {
            transform: translateY(-5px);
        }

        .r-feature-icon {
            width: 60px;
            height: 60px;
            background-color: #c4ff0e;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            font-size: 2rem;
        }

        .r-feature-title {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            font-weight: bold;
        }

        .r-footer {
            background-color: #000;
            padding: 60px 20px 40px;
            border-top: 1px solid #333;
        }

        .r-footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .r-footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .r-footer-column {
            display: flex;
            flex-direction: column;
        }

        .r-newsletter-box {
            background-color: #2a2a2a;
            padding: 30px;
            border-radius: 8px;
        }

        .r-logo {
            color: #c4ff0e;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 30px;
        }

        .r-newsletter-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .r-newsletter-text {
            font-size: 0.9rem;
            color: #ccc;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .r-newsletter-btn {
            background-color: #c4ff0e;
            color: #000;
            padding: 15px 25px;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            font-size: 0.95rem;
            transition: background-color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .r-newsletter-btn:hover {
            background-color: #a8d60c;
        }

        .r-footer-heading {
            font-size: 1rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .r-footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .r-footer-link {
            color: #ccc;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .r-footer-link:hover {
            color: #c4ff0e;
        }

        .r-social-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            flex-wrap: wrap;
            gap: 20px;
        }

        .r-social-icons {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .r-social-icon {
            color: #fff;
            font-size: 1.4rem;
            transition: color 0.3s ease;
        }

        .r-social-icon:hover {
            color: #c4ff0e;
        }

        .r-footer-bottom {
            display: flex;
            gap: 20px;
            align-items: center;
            font-size: 0.85rem;
            color: #ccc;
            flex-wrap: wrap;
        }

        .r-footer-bottom a {
            color: #ccc;
            text-decoration: none;
        }

        .r-footer-bottom a:hover {
            color: #c4ff0e;
        }

        @media (max-width: 768px) {
            .r-why-section {
                padding: 40px 15px;
            }

            .r-features-grid {
                grid-template-columns: 1fr;
            }

            .r-footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .r-social-section {
                flex-direction: column;
                align-items: flex-start;
            }

            .r-feature-card {
                padding: 40px 20px;
            }

            .r-newsletter-box {
                padding: 25px 20px;
            }
        }