        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #1a3a5f 100%);
            color: #e0e9ff;
            line-height: 1.7;
            min-height: 100vh;
            padding-top: 80px;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid #f59f00;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffd43b;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
        }
        .logo span {
            color: #f59f00;
            font-style: italic;
        }
        .logo:hover {
            color: #ffd43b;
        }
        .breadcrumb {
            margin: 10px 0;
            font-size: 0.9rem;
            color: #a5d8ff;
        }
        .breadcrumb a {
            color: #a5d8ff;
        }
        .breadcrumb a:hover {
            color: #fff;
        }
        .breadcrumb i {
            margin: 0 8px;
            font-size: 0.8rem;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-desktop a {
            color: #e0e9ff;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            color: #ffd43b;
            border-bottom-color: #ffd43b;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffd43b;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(12, 26, 45, 0.98);
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
        }
        .nav-mobile li {
            margin: 15px 0;
        }
        .nav-mobile a {
            color: #e0e9ff;
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .nav-mobile a:hover {
            background: rgba(255, 212, 59, 0.1);
            color: #ffd43b;
        }
        .utility-forms {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            border: 1px solid #2d4a6e;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #a5d8ff;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #3a5f8a;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }
        .form-control:focus {
            outline: none;
            border-color: #4dabf7;
            box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.2);
        }
        .btn {
            background: linear-gradient(to right, #f59f00, #ffd43b);
            color: #0c1a2d;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(245, 159, 0, 0.4);
        }
        .btn-secondary {
            background: linear-gradient(to right, #2d4a6e, #4d7abf);
            color: #e0e9ff;
        }
        .btn-secondary:hover {
            box-shadow: 0 5px 15px rgba(77, 122, 191, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 5px;
            direction: ltr;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #495057;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffd43b;
        }
        .main-article {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 40px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 2px dashed #f59f00;
        }
        h1 {
            color: #ffd43b;
            font-size: 2.8rem;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        h2 {
            color: #a5d8ff;
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #2d4a6e;
        }
        h3 {
            color: #74c0fc;
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #c0d8ff;
            font-weight: 300;
            margin-bottom: 30px;
        }
        .highlight {
            background: rgba(255, 212, 59, 0.15);
            border-left: 5px solid #ffd43b;
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-wrapper {
            margin: 30px 0;
            text-align: center;
        }
        .image-wrapper img {
            border-radius: 12px;
            border: 3px solid #3a5f8a;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #a5d8ff;
            font-size: 0.95rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            overflow: hidden;
        }
        .data-table th,
        .data-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #2d4a6e;
        }
        .data-table th {
            background: rgba(59, 130, 246, 0.2);
            color: #a5d8ff;
            font-weight: 700;
        }
        .data-table tr:hover {
            background: rgba(255, 255, 255, 0.03);
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .content-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid #2d4a6e;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .content-card:hover {
            transform: translateY(-5px);
            border-color: #4dabf7;
        }
        .internal-links {
            margin: 40px 0;
            padding: 30px;
            background: rgba(12, 26, 45, 0.7);
            border-radius: 12px;
            border: 1px solid #f59f00;
        }
        .internal-links h3 {
            text-align: center;
            color: #ffd43b;
            margin-bottom: 25px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(245, 159, 0, 0.2);
            transform: scale(1.02);
        }
        .site-footer {
            background: rgba(8, 18, 32, 0.95);
            border-top: 3px solid #f59f00;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            color: #a5d8ff;
            font-size: 0.9rem;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #2d4a6e;
            width: 100%;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .main-article { padding: 30px; }
            .nav-desktop { display: none; }
            .menu-toggle { display: block; }
        }
        @media (max-width: 768px) {
            body { padding-top: 70px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .main-article { padding: 20px; }
            .utility-forms { padding: 20px; }
            .content-grid { grid-template-columns: 1fr; }
            .web-links-container { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            .logo { font-size: 1.8rem; }
            .web-links-container { grid-template-columns: 1fr; }
            .star-rating label { font-size: 1.5rem; }
        }
