        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            color: #333;
            line-height: 1.6;
        }

        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            height: 40px;
        }

        /* Hero Carousel Section */
        .hero-carousel {
            padding-top: 80px;
            background-color: #000;
            overflow: hidden;
        }

        .carousel-container {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
        }

        .carousel-slides {
            position: relative;
            height: 600px;
        }

        @media (min-width: 1200px) {
            .carousel-slides {
                height: 120vh;
            }
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
            visibility: hidden;
            overflow: hidden;
        }

        .carousel-slide.active {
            opacity: 1;
            visibility: visible;
        }

        .slide-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .slide-background:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
        }

        .slide-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            filter: brightness(1);
        }

        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 20px;
            color: white;
            text-align: left;
            width: 50%;
        }

        .slide-content h1 {
            font-size: 42px;
            margin-bottom: 20px;
            color: #fff;
        }

        .slide-content p {
            font-size: 18px;
            color: #fff;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .hero-btn {
            display: inline-block;
            background-color: #d30000;
            color: white;
            font-weight: bold;
            padding: 12px 25px;
            border-radius: 4px;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .hero-btn:hover {
            background-color: #b00000;
        }

        .carousel-controls {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            z-index: 3;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .carousel-prev,
        .carousel-next {
            background: none;
            border: none;
            font-size: 24px;
            padding: 0 15px;
            cursor: pointer;
            color: #fff;
        }

        .carousel-prev:hover,
        .carousel-next:hover {
            color: #d30000;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            margin: 0 20px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #666;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .dot.active {
            background-color: #d30000;
        }

        @media (max-width: 992px) {
            .slide-content {
                width: 70%;
            }
        }

        @media (max-width: 768px) {
            .slide-content {
                width: 90%;
                text-align: center;
            }
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: white;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 60px;
            color: #d30000;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .feature-card {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 40px;
            color: #d30000;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #222;
        }

        .feature-card p {
            color: #666;
        }

        /* Specs Section */
        .specs {
            padding: 80px 0;
            background-color: #f2f2f2;
        }

        .specs-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .specs-flex {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .specs-image {
            flex: 1;
        }

        .specs-image img {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .specs-content {
            flex: 1;
        }

        .specs-content h2 {
            font-size: 32px;
            margin-bottom: 25px;
            color: #d30000;
        }

        .specs-list {
            list-style: none;
        }

        .specs-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }

        .specs-list li:before {
            content: "✓";
            color: #d30000;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* Product Showcase Section */
        .product-showcase {
            padding: 80px 0;
            background-color: white;
        }

        .showcase-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .product-card {
            display: flex;
            background-color: #f8f8f8;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .product-image {
            flex: 0 0 40%;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .product-details {
            flex: 0 0 60%;
            padding: 20px;
        }

        .product-details h3 {
            color: #d30000;
            font-size: 22px;
            margin-bottom: 10px;
        }

        .product-details p {
            margin-bottom: 15px;
            color: #555;
        }

        .product-specs {
            list-style: none;
            margin-bottom: 20px;
        }

        .product-specs li {
            padding-left: 20px;
            margin-bottom: 5px;
            position: relative;
            font-size: 14px;
        }

        .product-specs li:before {
            content: "•";
            color: #d30000;
            position: absolute;
            left: 0;
        }

        .product-link {
            display: inline-block;
            color: #d30000;
            text-decoration: none;
            font-weight: bold;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s;
        }

        .product-link:hover {
            border-color: #d30000;
        }

        @media (max-width: 992px) {
            .product-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .product-card {
                flex-direction: column;
            }

            .product-image,
            .product-details {
                flex: 0 0 100%;
            }
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(120deg, #d30000, #a70000);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: white;
        }

        .cta p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background-color: white;
            color: #d30000;
            font-weight: bold;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            transition: background-color 0.3s, transform 0.3s;
            font-size: 18px;
        }

        .cta-button:hover {
            background-color: #f0f0f0;
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background-color: #222;
            color: #ccc;
            padding: 60px 0 30px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 18px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: white;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            font-size: 14px;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

            .specs-flex {
                flex-direction: column;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {

            .features-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        .product-header-image-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding-bottom: 50px;
        }

        .product-header-image-container img {
            width: 100%;
            display: block;
        }

        .product-overlay-title {
            position: absolute;
            top: 20%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 3rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            margin: 0;
            padding: 0;
            text-align: center;
            width: 100%;
        }

        /* Server Types Section */
        .server-types {
            background-color: #f5f5f5;
            padding: 30px 0;
        }

        .types-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .server-type-tabs {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 80px;
        }

        .server-type {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            position: relative;
            padding-bottom: 20px;
        }

        .server-type img {
            width: 50px;
            height: 50px;
            margin-bottom: 15px;
        }

        .server-type h3 {
            font-size: 18px;
            color: #333;
            text-align: center;
            margin: 0;
        }

        .server-type.active h3 {
            color: #d30000;
        }

        .tab-indicator {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #d30000;
            display: none;
        }

        .server-type.active .tab-indicator {
            display: block;
        }