        /* CSS Variables for Colors - Updated to Blue & White Theme */
        :root {
            --primary-blue: #1E3A8A;
            --light-blue: #3B82F6;
            --very-light-blue: #DBEAFE;
            --white: #FFFFFF;
            --light-gray: #F8FAFC;
            --dark-gray: #1E293B;
            --shadow: rgba(30, 58, 138, 0.1);
            --accent-blue: #2563EB;
            --gradient-blue: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
        }
        
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Cairo', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--white);
            transition: all 0.3s ease;
            overflow-x: hidden;
        }
        
        body.english {
            font-family: 'Open Sans', sans-serif;
            direction: ltr;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header & Navigation */
        header {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 10px var(--shadow);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 10px 0;
            backdrop-filter: blur(5px);
            transform: translateY(0);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        header.hidden {
            transform: translateY(-100%);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            animation: fadeInDown 1s ease;
        }
        
        .logo {
            height: 87px;
            width: 92px;
            margin-left: 9px;
            transition: transform 0.5s ease;
        }
        
        .logo:hover {
            transform: rotate(5deg) scale(1.05);
        }
        
        .logo-text {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1.3;
        }
        
        .logo-text span {
            color: var(--light-blue);
            display: block;
            font-size: 18px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin: 0 10px;
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--primary-blue);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        nav ul li a:hover {
            color: var(--primary-blue);
        }
        
        nav ul li a:hover::after {
            width: 80%;
        }
        
        /* Language Switcher */
        .language-switcher {
            display: flex;
            align-items: center;
            margin-left: 20px;
            position: relative;
        }
        
        .lang-btn {
            background-color: transparent;
            border: 2px solid var(--primary-blue);
            padding: 8px 15px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            border-radius: 4px;
            margin: 0 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 70px;
            position: relative;
            overflow: hidden;
        }
        
        .lang-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: var(--primary-blue);
            transition: left 0.3s ease;
            z-index: -1;
        }
        
        .lang-btn:hover::before {
            left: 0;
        }
        
        .lang-btn.active {
            background-color: var(--primary-blue);
            color: var(--white);
        }
        
        .lang-btn:hover:not(.active) {
            color: var(--white);
        }
        
        .lang-icon {
            margin-left: 5px;
            font-size: 14px;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary-blue);
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .mobile-menu-btn:hover {
            transform: scale(1.1);
        }
        
        /* Floating Action Button */
        .fab {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: var(--primary-blue);
            color: var(--white);
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
            cursor: pointer;
            z-index: 999;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .fab:hover {
            transform: scale(1.1);
            background-color: var(--light-blue);
            box-shadow: 0 6px 25px rgba(30, 58, 138, 0.4);
        }
        
        /* Hero Section */
        .hero {
            padding: 180px 0 120px;
            text-align: center;
            overflow: hidden;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -2;
            animation: zoomInOut 20s infinite alternate;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.9) 100%);
            z-index: -1;
        }
        
        .hero .container {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 42px;
            margin-bottom: 25px;
            color: var(--white);
            animation: fadeInUp 1s ease;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 35px;
            color: var(--white);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease 0.3s both;
            line-height: 1.8;
            opacity: 0.95;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--white);
            color: var(--primary-blue);
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.6s both;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: var(--primary-blue);
            transition: left 0.5s ease;
            z-index: -1;
        }
        
        .cta-button:hover {
            color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .cta-button:hover::before {
            left: 0;
        }
        
        /* About Section - تم التصحيح */
        .section {
            padding: 80px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary-blue);
            display: inline-block;
            padding-bottom: 10px;
            position: relative;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--light-blue);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
            animation: expandWidth 2s ease infinite alternate;
        }
        
        /* About Content - محاذاة محسنة */
        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            animation: fadeInLeft 1s ease;
        }
        
        .about-text h3 {
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-size: 28px;
            line-height: 1.3;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 17px;
            line-height: 1.8;
            text-align: justify;
        }
        
        .about-features {
            margin-top: 25px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
            padding: 15px;
            background: var(--very-light-blue);
            border-radius: 8px;
        }
        
        .feature-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(30, 58, 138, 0.1);
        }
        
        .feature-icon {
            background-color: var(--primary-blue);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-left: 15px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover .feature-icon {
            background-color: var(--light-blue);
            transform: rotate(15deg) scale(1.1);
        }
        
        .feature-content h4 {
            color: var(--primary-blue);
            margin-bottom: 5px;
            font-size: 18px;
        }
        
        .feature-content p {
            margin-bottom: 0;
            font-size: 15px;
            color: var(--dark-gray);
            line-height: 1.6;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            animation: fadeInRight 1s ease;
        }
        
        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px var(--shadow);
            transition: transform 0.5s ease;
            filter: brightness(0.9);
        }
        
        .about-image img:hover {
            transform: scale(1.02) rotate(1deg);
            filter: brightness(1);
        }
        
        .image-caption {
            text-align: center;
            margin-top: 15px;
            font-style: italic;
            color: var(--dark-gray);
            font-size: 14px;
            padding: 0 10px;
        }
        
        /* Services Section */
        .services {
            background-color: var(--light-gray);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px var(--shadow);
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 5px;
            background-color: var(--light-blue);
            transition: left 0.5s ease;
        }
        
        .service-card:hover::before {
            left: 0;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(30, 58, 138, 0.15);
        }
        
        .service-icon {
            background-color: var(--very-light-blue);
            color: var(--primary-blue);
            font-size: 40px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            background-color: var(--primary-blue);
            color: var(--white);
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            color: var(--primary-blue);
            margin-bottom: 15px;
            font-size: 22px;
        }
        
        /* Products Section - تم التصحيح */
        .products {
            background-color: var(--light-gray);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px var(--shadow);
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(30, 58, 138, 0.15);
        }
        
        .product-image {
            height: 250px;
            width: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            animation: badgePulse 2s infinite;
            z-index: 2;
        }
        
        .product-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-content h3 {
            color: var(--primary-blue);
            margin-bottom: 15px;
            font-size: 22px;
            text-align: center;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease;
        }
        
        .product-card:hover .product-content h3 {
            color: var(--light-blue);
        }
        
        .product-content p {
            color: var(--dark-gray);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 20px;
            flex-grow: 1;
            text-align: justify;
        }
        
        .product-features {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px dashed var(--very-light-blue);
        }
        
        .product-features h4 {
            color: var(--light-blue);
            margin-bottom: 15px;
            font-size: 17px;
        }
        
        .product-features ul {
            list-style-type: none;
            padding-right: 0;
        }
        
        .product-features li {
            margin-bottom: 10px;
            font-size: 15px;
            position: relative;
            padding-right: 25px;
            transition: transform 0.3s ease;
            line-height: 1.5;
        }
        
        .product-features li:hover {
            transform: translateX(5px);
            color: var(--primary-blue);
        }
        
        .product-features li:before {
            content: "✓";
            position: absolute;
            right: 0;
            color: var(--primary-blue);
            font-weight: bold;
            font-size: 16px;
        }
        
        /* Contact Section - تم التصحيح */
        .contact {
            background-color: var(--white);
        }
        
        .contact-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            background: var(--very-light-blue);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(30, 58, 138, 0.1);
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            background: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(30, 58, 138, 0.1);
            border: 1px solid var(--very-light-blue);
        }
        
        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            animation: fadeInLeft 0.8s ease;
            transition: transform 0.3s ease;
            padding: 15px;
            border-radius: 8px;
            background: var(--white);
        }
        
        .info-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(30, 58, 138, 0.1);
        }
        
        .info-icon {
            background-color: var(--primary-blue);
            color: var(--white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-left: 20px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .info-item:hover .info-icon {
            background-color: var(--light-blue);
            transform: rotate(15deg) scale(1.1);
        }
        
        .info-content h4 {
            color: var(--primary-blue);
            margin-bottom: 5px;
            font-size: 18px;
        }
        
        .info-content p {
            color: var(--dark-gray);
            font-size: 16px;
            line-height: 1.6;
        }
        
        .form-group {
            margin-bottom: 25px;
            animation: fadeInRight 0.8s ease;
            position: relative;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 18px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-family: inherit;
            font-size: 16px;
            transition: all 0.3s ease;
            background-color: var(--white);
            color: var(--dark-gray);
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
            transform: translateY(-2px);
        }
        
        .form-group label {
            position: absolute;
            top: 18px;
            right: 18px;
            color: #999;
            transition: all 0.3s ease;
            pointer-events: none;
            background-color: var(--white);
            padding: 0 5px;
        }
        
        .form-group input:focus + label,
        .form-group input:valid + label,
        .form-group textarea:focus + label,
        .form-group textarea:valid + label {
            top: -10px;
            right: 10px;
            font-size: 14px;
            color: var(--primary-blue);
            font-weight: 600;
        }
        
        .submit-btn {
            background-color: var(--primary-blue);
            color: var(--white);
            border: none;
            padding: 18px 40px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            width: 100%;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: var(--light-blue);
            transition: left 0.5s ease;
            z-index: -1;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
        }
        
        .submit-btn:hover::before {
            left: 0;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            padding: 20px;
        }
        
        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 22px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--light-blue);
            bottom: 0;
            right: 0;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
            transition: transform 0.3s ease;
        }
        
        .footer-links li:hover {
            transform: translateX(5px);
        }
        
        .footer-links a {
            color: var(--very-light-blue);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 16px;
        }
        
        .footer-links a:hover {
            color: var(--white);
            padding-right: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: var(--very-light-blue);
        }
        
        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0;
            height: 4px;
            background-color: var(--light-blue);
            z-index: 1001;
            transition: width 0.2s ease;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @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);
            }
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
            }
            50% {
                box-shadow: 0 4px 25px rgba(30, 58, 138, 0.5);
            }
            100% {
                box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
            }
        }
        
        @keyframes zoomInOut {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.1);
            }
        }
        
        @keyframes expandWidth {
            0% {
                width: 80px;
            }
            100% {
                width: 120px;
            }
        }
        
        @keyframes badgePulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                right: 0;
                background-color: var(--white);
                width: 100%;
                flex-direction: column;
                box-shadow: 0 10px 20px var(--shadow);
                border-radius: 0 0 10px 10px;
                padding: 20px;
                animation: fadeInDown 0.5s ease;
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .language-switcher {
                margin-left: 10px;
            }
            
            .hero {
                padding: 160px 0 100px;
                min-height: 80vh;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .logo-text {
                font-size: 20px;
            }
            
            .logo-text span {
                font-size: 16px;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 140px 0 80px;
            }
            
            .hero h1 {
                font-size: 30px;
            }
            
            .hero p {
                font-size: 17px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .cta-button {
                padding: 15px 30px;
                font-size: 16px;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 20px;
            }
            
            .product-content h3 {
                font-size: 20px;
                min-height: 55px;
            }
            
            .product-content p {
                font-size: 15px;
            }
            
            .logo-text {
                font-size: 18px;
            }
            
            .logo-text span {
                font-size: 14px;
            }
            
            .about-text h3 {
                font-size: 24px;
            }
            
            .contact-content {
                flex-direction: column;
            }
            
            .contact-info, .contact-form {
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 26px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .hero {
                min-height: 70vh;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .product-content h3 {
                font-size: 22px;
                min-height: auto;
                margin-bottom: 10px;
            }
            
            .logo-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .logo-text {
                font-size: 16px;
                margin-top: 5px;
            }
            
            .logo-text span {
                font-size: 14px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-text {
                order: 2;
            }
            
            .about-image {
                order: 1;
                margin-bottom: 30px;
            }
            
            .feature-item {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .feature-icon {
                margin-left: 0;
                margin-bottom: 15px;
            }
            
            .info-item {
                flex-direction: column;
                align-items: flex-start;
                text-align: center;
            }
            
            .info-icon {
                margin-left: 0;
                margin-bottom: 15px;
                align-self: center;
            }
        }
