  
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        /* Header Styles */
        .header {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
            z-index: 1000;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
            flex: 1;
        }
        
        .logo img {
            height: 50px;
            width: auto;
        }
        
        .main-title {
            flex: 2;
            text-align: center;
            color: #0047AB;
            font-size: 2.5rem;
            font-weight: bold;
            letter-spacing: 1px;
            white-space: nowrap;
        }
        
        .header-spacer {
            flex: 1;
        }
        
        /* Main Content Styles */
        .main-content {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
            align-items: start;
        }
        
        /* Carousel Styles */
        .carousel-container {
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: 40px;
        }
        
        .carousel {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
        }
        
        .carousel-images {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }
        
        .carousel-image {
            width: 33.33%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .indicator.active {
            background-color: #D4AF37;
        }
        
        /* Service Description Styles */
        .service-description {
            background: #ffffff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }
        
        .service-description h2 {
            color: #0047AB;
            font-size: 2rem;
            margin-bottom: 25px;
            text-align: center;
            border-bottom: 3px solid #D4AF37;
            padding-bottom: 15px;
        }
        
        .service-description h3 {
            color: #0047AB;
            font-size: 1.5rem;
            margin: 25px 0 15px 0;
            font-weight: bold;
        }
        
        .service-description p {
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
            color: #555;
            margin-bottom: 20px;
        }
        
        .highlight {
            background: linear-gradient(135deg, #0047AB, #D4AF37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: bold;
        }
        
        /* Login Box Styles */
        .login-container {
            background: linear-gradient(135deg, #0047AB, #D4AF37);
            padding: 3px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            margin-bottom: 40px;
        }
        
        .login-box {
            background: #ffffff;
            padding: 40px;
            border-radius: 12px;
            text-align: center;
        }
        
        .login-box h3 {
            color: #0047AB;
            font-size: 1.8rem;
            margin-bottom: 30px;
            font-weight: bold;
        }
        
        .form-group {
            margin-bottom: 25px;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: bold;
            font-size: 1rem;
        }
        
        .form-group input {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #0047AB;
            box-shadow: 0 0 10px rgba(0,71,171,0.2);
        }
        
        .login-button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #0047AB, #D4AF37);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .login-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,71,171,0.3);
        }

        /* Product Image and Download Section */
        .product-showcase {
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            text-align: center;
        }

        .product-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .download-section {
            padding: 30px;
        }

        .download-button {
            width: 100%;
            padding: 15px 30px;
            background: linear-gradient(135deg, #0047AB, #D4AF37);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .download-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,71,171,0.3);
        }
        
        /* Footer Styles */
        .footer {
            background-color: #0047AB;
            color: white;
            padding: 50px 0 30px 0;
            margin-top: 80px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            color: #D4AF37;
            font-size: 1.3rem;
            margin-bottom: 20px;
            border-bottom: 2px solid #D4AF37;
            padding-bottom: 10px;
        }
        
        .footer-section p, .footer-section li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-bottom a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }
        
        .footer-section a:hover {
            color: #D4AF37;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 20px;
            text-align: center;
            color: rgba(255,255,255,0.8);
        }
        
        .social-links {
            margin-top: 15px;
        }
        
        .social-links a {
            display: inline-block;
            margin: 0 10px;
            padding: 10px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            transition: background-color 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: #D4AF37;
        }
        
        /* TABLET STYLES - 768px to 1024px */
        @media (max-width: 1024px) and (min-width: 769px) {
            .header-container {
                padding: 15px;
            }
            
            .logo img {
                height: 45px;
            }
            
            .main-title {
                font-size: 2.2rem;
                letter-spacing: 0.5px;
            }
            
            .main-content {
                gap: 40px;
                margin: 40px auto;
            }
            
            .carousel {
                height: 350px;
            }
            
            .service-description {
                padding: 35px;
            }
            
            .service-description h2 {
                font-size: 1.8rem;
            }
            
            .service-description h3 {
                font-size: 1.3rem;
            }
            
            .service-description p {
                font-size: 1.05rem;
            }
            
            .login-box {
                padding: 35px;
            }
            
            .login-box h3 {
                font-size: 1.6rem;
            }
            
            .download-section {
                padding: 25px;
            }
            
            .footer-content {
                gap: 30px;
            }
        }
        
        /* MOBILE STYLES - Up to 768px */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
                padding: 15px;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            .logo img {
                height: 40px;
            }
            
            .main-title {
                font-size: 1.6rem;
                margin: 0;
                white-space: normal;
                line-height: 1.3;
                letter-spacing: 0.5px;
            }
            
            .header-spacer {
                display: none;
            }
            
            .main-content {
                grid-template-columns: 1fr;
                gap: 30px;
                margin: 25px auto;
                padding: 0 15px;
            }
            
            .carousel {
                height: 250px;
            }
            
            .carousel-indicators {
                bottom: 15px;
            }
            
            .indicator {
                width: 10px;
                height: 10px;
            }
            
            .service-description {
                padding: 25px;
                margin-bottom: 30px;
            }
            
            .service-description h2 {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }
            
            .service-description h3 {
                font-size: 1.2rem;
                margin: 20px 0 10px 0;
            }
            
            .service-description p {
                font-size: 1rem;
                line-height: 1.6;
                text-align: left;
                margin-bottom: 15px;
            }
            
            .login-box {
                padding: 25px;
            }
            
            .login-box h3 {
                font-size: 1.4rem;
                margin-bottom: 25px;
            }
            
            .form-group {
                margin-bottom: 20px;
            }
            
            .form-group input {
                padding: 12px;
                font-size: 16px; /* Prevents zoom on iOS */
            }
            
            .login-button {
                padding: 12px;
                font-size: 1.1rem;
            }
            
            .download-section {
                padding: 20px;
            }
            
            .download-button {
                padding: 12px 25px;
                font-size: 1rem;
            }
            
            .footer {
                padding: 40px 0 25px 0;
                margin-top: 60px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
                margin-bottom: 30px;
            }
            
            .footer-section h4 {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }
            
            .footer-section p, .footer-section li {
                font-size: 0.9rem;
                margin-bottom: 8px;
            }
            
            .social-links a {
                margin: 0 8px;
                padding: 8px;
            }
        }
        
        /* SMALL MOBILE STYLES - Up to 480px */
        @media (max-width: 480px) {
            .main-title {
                font-size: 1.4rem;
            }
            
            .main-content {
                padding: 0 10px;
                margin: 20px auto;
            }
            
            .carousel {
                height: 200px;
            }
            
            .service-description {
                padding: 20px;
            }
            
            .service-description h2 {
                font-size: 1.3rem;
            }
            
            .service-description h3 {
                font-size: 1.1rem;
            }
            
            .service-description p {
                font-size: 0.95rem;
            }
            
            .login-box {
                padding: 20px;
            }
            
            .login-box h3 {
                font-size: 1.3rem;
            }
            
            .download-section {
                padding: 15px;
            }
            
            .footer-container {
                padding: 0 15px;
            }
        }
    
