        :root {
            --primary: #2b7291;
            --secondary: #63a6bc;
            --accent: #f7941d;
            --light: #e9f2f7;
            --dark: #253746;
        }
        
        body {
            font-family: 'Prompt', sans-serif;
            color: var(--dark);
            overflow-x: hidden;
        }
        
        .btn-primary {
            background-color: var(--accent);
            border-color: var(--accent);
            color: white;
            font-weight: 600;
            padding: 10px 25px;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(247, 148, 29, 0.3);
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #e58210;
            border-color: #e58210;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(247, 148, 29, 0.4);
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.4rem;
        }
        
        .nav-link {
            color: var(--dark);
            font-weight: 500;
            position: relative;
        }
        
        .nav-link:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 3px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:before {
            width: 100%;
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 7rem 0;
            position: relative;
        }
        .hero-section::after {
            content: "";
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background-color: white;
            border-radius: 100% 100% 0 0;
        }
.hero img {
    width: 100%;
    height: auto;
    display: block;
}
        
        .hero-image:hover {
            transform: translateY(10px);
        }
        
        .features-section {
            padding: 5rem 0;
            background-color: white;
        }
        
        .feature-card {
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            background-color: white;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background-color: var(--light);
            color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            background-color: var(--primary);
            color: white;
        }
        
        .feature-title {
            font-weight: 600;
            font-size: 1.3rem;
            margin-top: 1rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .specs-section {
            padding: 5rem 0;
            background-color: var(--light);
            position: relative;
        }
        
        .specs-section::before {
            content: "";
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background-color: var(--light);
            border-radius: 0 0 100% 100%;
        }
        
        .specs-table {
            background-color: white;
            border-radius: 12px;
            width: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .specs-table th {
            background-color: var(--primary);
            color: white;
        }
        
        .specs-table td {
            padding: 15px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .specs-table tr:last-child td {
            border-bottom: none;
        }
        
        .cta-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
        }
        
        .section-title {
            font-weight: 700;
            margin-bottom: 3rem;
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--accent);
        }
        
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 1rem 0;
        }
        
        .footer-title {
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 500;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .footer-link:hover {
            color: var(--accent);
            transform: translateX(5px);
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--accent);
            transform: translateY(-5px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero-image {
                margin-top: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .feature-card {
                margin-bottom: 2rem;
            }
            
            .hero-section {
                padding: 5rem 0;
            }
        }
        .image-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background-color: #f5f5f5;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            max-width: 1200px;
            margin: 20px auto;
        }

        .image-item {
            flex: 1;
            text-align: center;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .image-item img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            object-position: center;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            display: block;
        }

        .image-item img:hover {
            transform: scale(1.05);
        }

        .image-caption {
            margin: 0;
            padding: 15px;
            font-family: Arial, sans-serif;
            color: #333;
            font-size: 14px;
            background: white;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .image-container {
                flex-direction: column;
                gap: 15px;
            }
            
            .image-item img {
                height: 200px;
            }
        }
@media (max-width: 768px) {
    .spec-image img {
        width: 100%;
        height: auto;
        max-width: 512px;
    }
}
