/* Module styling */
        .module-container {
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            background-color: white;
        }
        .module-title {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 2rem;
        }
        .module-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        }
        
        /* Hero section */
        .hero-section {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 60%);
            color: white;
            border-radius: 10px;
            padding: 3rem;
            margin-bottom: 2rem;
        }
        
        /* Stats section */
        .stat-card {
            text-align: center;
            padding: 1.5rem;
            border-radius: 10px;
            height: 100%;
            border: 1px solid #e0e0e0;
            margin-bottom: 0.5rem;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2575fc;
            margin-bottom: 0.5rem;
        }
        .stat-title {
            font-size: 1rem;
            color: #6c757d;
        }
        
        /* Feature card */
        .feature-card {
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            background-color: white;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: #2575fc;
        }
        
        /* Device card */
        .device-card {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
            background-color: white;
            height: 100%;
        }
        .device-header {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 70%);
            color: white;
            padding: 1.5rem;
            text-align: center;
        }
        .device-body {
            padding: 2rem;
        }
        .device-price {
            font-size: 2rem;
            font-weight: 700;
            color: #2575fc;
            text-align: center;
            margin: 1.5rem 0;
        }
        .device-specs {
          list-style: none;
          padding-left: 0;
          font-size: 0.8rem;
        }
        .device-specs li {
            margin-bottom: 0.8rem;
        }
        .port-calculator {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 1.5rem;
            margin-top: 1.5rem;
        }
        .port-slider {
            width: 100%;
        }
        .total-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2575fc;
            margin-top: 1rem;
        }
        
        /* Config section */
        .config-table {
            width: 100%;
            margin-top: 1.5rem;
        }
        .config-table th {
            background-color: #f8f9fa;
            padding: 0.8rem;
            text-align: left;
        }
        .config-table td {
            padding: 0.8rem;
            border-bottom: 1px solid #e0e0e0;
        }
        
        /* Modal styling */
        .modal-backdrop.show {
            opacity: 0.6 !important;
            background-color: #000;
        }
        .modal-content {
            background: transparent;
            border: none;
        }
        .faq-category{
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            background-color: white;
            
            
        }