
        /* Custom CSS Variables - UEESHOP Style Adaptation */
        :root {
            --primary-color: #0066cc;       /* UEESHOP Primary Color */
            --secondary-color: #28a745;     /* Secondary Color (Green) */
            --dark-color: #333333;          /* Dark Text Color */
            --light-color: #f8f9fa;         /* Light Background Color */
            --gray-color: #6c757d;          /* Gray Text Color */
            --border-color: #e5e5e5;        /* Border Color */
        }

        /* Base Style Reset - UEESHOP Adaptation */
        body {
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            line-height: 1.7;
            color: var(--dark-color);
            background-color: #ffffff;
            margin: 0;
            padding: 0;
        }

        /* Container Adaptation - UEESHOP Standard */
        .container {
            max-width: 1200px;
            padding-left: 15px;
            padding-right: 15px;
            margin: 0 auto;
        }

        /* Title Style */
        .section-title {
            position: relative;
            margin-bottom: 30px;
            padding-bottom: 15px;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }
        }

        .section-title::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }

        /* Card Style - UEESHOP Style */
        .feature-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 25px 20px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-color: var(--primary-color);
        }

        .feature-card .icon-box {
            width: 60px;
            height: 60px;
            background-color: rgba(0,102,204,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .feature-card .icon-box i {
            font-size: 1.8rem;
            color: var(--primary-color);
        }

        /* Button Style - UEESHOP Standard */
        .btn-primary-custom {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 4px;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s ease;
        }

        .btn-primary-custom:hover {
            background-color: #0052a3;
            color: white;
            text-decoration: none;
        }

        /* List Style */
        .custom-list {
            list-style: none;
            padding-left: 0;
        }

        .custom-list li {
            padding-left: 25px;
            position: relative;
            margin-bottom: 10px;
        }

        .custom-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }

        /* Highlight Text */
        .highlight-text {
            color: var(--primary-color);
            font-weight: 600;
        }

        /* Responsive Spacing */
        .py-section {
            padding-top: 40px;
            padding-bottom: 40px;
        }

        @media (max-width: 768px) {
            .py-section {
                padding-top: 25px;
                padding-bottom: 25px;
            }
        }

        /* Background Section */
        .bg-light-custom {
            background-color: var(--light-color);
        }

        /* Contact Box Style */
        .contact-box {
            background-color: var(--primary-color);
            color: white;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
        }

        .contact-box a {
            color: white;
            text-decoration: underline;
        }

        .contact-box a:hover {
            color: #f0f0f0;
        }

        /* Capability List Style */
        .capability-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }

        .capability-tag {
            background-color: rgba(0,102,204,0.1);
            color: var(--primary-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        /* Technical Parameter Table Style */
        .tech-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .tech-table th, .tech-table td {
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            text-align: left;
        }

        .tech-table th {
            background-color: rgba(0,102,204,0.05);
            color: var(--primary-color);
            font-weight: 600;
        }

        .tech-table tr:nth-child(even) {
            background-color: var(--light-color);
        }

        @media (max-width: 768px) {
            .tech-table {
                font-size: 0.85rem;
            }
            .tech-table th, .tech-table td {
                padding: 8px 10px;
            }
        }
    