        .alert-box {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            color: #856404;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        
        .alert-box i {
            font-size: 1.3rem;
        }
        
        .penalty-section {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .section-title {
            color: #2c5282;
            border-bottom: 3px solid #373737;
            padding-bottom: 12px;
            margin-bottom: 25px;
            font-size: 1.8rem;
            align-items: center;
            gap: 10px;
        }
        
        .section-title i {
            color: #4299e1;
        }
        
        .penalty-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .penalty-table th {
            background: #373737;
            color: white;
            padding: 16px 15px;
            text-align: left;
            font-weight: 600;
            font-size: 1.05rem;
        }
        
        .penalty-table td {
            padding: 15px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .penalty-table tr:nth-child(even) {
            background: #f7fafc;
        }
        
        .penalty-table tr:hover {
            background: #edf2f7;
        }
        
        .engine-capacity {
            font-weight: 600;
            color: #2d3748;
        }
        
        .penalty-amount {
            font-weight: 600;
            color: #2c5282;
        }
        
        .max-capping {
            font-weight: 600;
            color: #e53e3e;
        }
        
        .special-category {
            background: #e8f5e8;
            border-left: 4px solid #38a169;
            padding: 13px 12px 4px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .special-category h3 {
            color: #2f855a;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .important-note {
            background: #fed7d7;
            border: 1px solid #feb2b2;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
            font-weight: 500;
        }
        
        .important-note h3 {
            color: #c53030;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
         @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .header-text h1 {
                font-size: 1.8rem;
            }
            
            .penalty-table {
                font-size: 0.9rem;
            }
            
            .penalty-table th,
            .penalty-table td {
                padding: 12px 8px;
            }
            
            .container {
                padding: 10px;
            }
        }
        
        @media (max-width: 480px) {
            .penalty-table {
                display: block;
                overflow-x: auto;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
        }