        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
       
        
        .content-wrapper {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        @media (min-width: 992px) {
            .content-wrapper {
                flex-direction: row;
            }
        }
        
        /* Tabs Navigation Styles */
        .tabs-nav {
            flex: 0 0 300px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 20px 0;
            height: fit-content;
        }
        
        .tabs-nav h3 {
            padding: 0 20px 15px;
            color: #002247;
            font-size: 1.3rem;
            border-bottom: 1px solid #eee;
            margin-bottom: 10px;
        }
        
        .tab-list {
            list-style: none;
        }
        
        .tab-item {
            padding: 15px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
        }
        
        .tab-item:hover {
            background-color: #f5f8ff;
        }
        
        .tab-item.active {
            background-color: #eef4ff;
            border-left-color: #2f5496;
            color: #2f5496;
            font-weight: 600;
        }
        
        .tab-item i {
            width: 20px;
            text-align: center;
            font-size: 1.1rem;
        }
        
        /* Content Panel Styles */
        .content-panel {
            flex: 1;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        .tab-content {
            padding: 0;
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .tab-header {
            padding: 25px 30px;
            background: linear-gradient(135deg, #002247 0%, #2f5496 100%);
            color: white;
        }
        
        .tab-header h2 {
            color: white !important;
            font-size: 1.8rem;
            margin-bottom: 8px;
        }
        
        .tab-header p {
            color: white !important;
            opacity: 0.9;
            font-size: 1.05rem;
        }
        
        .tab-body {
            padding: 30px;
        }
        
        .info-block {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }
        
        .info-block:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .info-title {
            color: #002247;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .info-title i {
            color: #2f5496;
        }
        
        .info-desc {
            color: #444;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .info-desc ul, .info-desc ol {
            padding-left: 20px;
            margin-top: 10px;
        }
        
        .info-desc li {
            margin-bottom: 8px;
        }
        
        .styled-button {
            display: inline-block;
            background: #002147;
            color: white;
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
            font-size: 1rem;
        }
        
        .styled-button:hover {
            background: #002247;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(47, 84, 150, 0.2);
        }
        
        .button-container {
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .info-subtitle {
            font-weight: 600;
            color: #2f5496;
            margin: 15px 0 8px;
            font-size: 1.1rem;
        }
        
        .note-box {
            background-color: #f0f7ff;
            border-left: 4px solid #2f5496;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 4px 4px 0;
        }
        
        .note-box strong {
            color: #002247;
        }
        
        /* Responsive Styles */
        @media (max-width: 991px) {
            .tabs-nav {
                flex: none;
                width: 100%;
            }
            
            .tab-list {
                display: flex;
                overflow-x: auto;
                padding-bottom: 10px;
            }
            
            .tab-item {
                flex: 0 0 auto;
                white-space: nowrap;
                border-left: none;
                border-bottom: 3px solid transparent;
            }
            
            .tab-item.active {
                border-left: none;
                border-bottom: 3px solid #2f5496;
            }
        }
        
        @media (max-width: 768px) {
            .tab-header, .tab-body {
                padding: 20px;
            }
            
            .header h1 {
                font-size: 1.8rem;
            }
            
            .tab-header h2 {
                color: white !important;
                font-size: 1.5rem;
            }
        }
        
        .footer {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #ddd;
            color: #666;
            font-size: 0.9rem;
        }
    