 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #1e3a5f 0%, #17a2b8 100%);
            min-height: 100vh;
            padding: 2rem 1rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            overflow: hidden;
        }

        .header {
            background: linear-gradient(135deg, #1e3a5f, #17a2b8);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

        .logo {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .logo .haba {
            color: #ffffff;
        }

        .logo .log {
            color: #17a2b8;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .tagline {
            font-size: 1.1rem;
            opacity: 0.95;
            font-weight: 500;
        }

        .content {
            padding: 3rem 2rem;
        }

        h1 {
            color: #1e3a5f;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid #17a2b8;
        }

        .last-updated {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            font-style: italic;
        }

        h2 {
            color: #1e3a5f;
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        h3 {
            color: #2563eb;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.5rem 0;
        }

        p {
            line-height: 1.8;
            color: #333;
            margin-bottom: 1rem;
        }

        .info-box {
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
            border-left: 4px solid #17a2b8;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 10px;
        }

        .info-box strong {
            color: #1e3a5f;
        }

        .warning-box {
            background: linear-gradient(135deg, #fff3cd, #fef3c7);
            border-left: 4px solid #ffc107;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 10px;
        }

        .warning-box strong {
            color: #856404;
        }

        ul {
            margin-left: 2rem;
            margin-bottom: 1rem;
        }

        li {
            line-height: 1.8;
            color: #555;
            margin-bottom: 0.5rem;
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            border-radius: 10px;
            overflow: hidden;
        }

        .data-table th {
            background: #1e3a5f;
            color: white;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }

        .data-table td {
            padding: 1rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .data-table tr:nth-child(even) {
            background: #f8f9fa;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #17a2b8, #2563eb);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            margin-top: 2rem;
        }

        .back-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(23,162,184,0.4);
        }

        .footer {
            background: #1e3a5f;
            color: white;
            text-align: center;
            padding: 2rem;
            font-size: 0.9rem;
        }

        .footer a {
            color: #17a2b8;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .header {
                padding: 2rem 1rem;
            }

            .logo {
                font-size: 2rem;
            }

            .content {
                padding: 2rem 1.5rem;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .data-table {
                font-size: 0.9rem;
            }

            .data-table th,
            .data-table td {
                padding: 0.7rem;
            }
        }