        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a1a2a;
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #29b6f6;
            text-decoration: underline;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #1e88e5, #0d47a1);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
        }
        .btn:hover {
            background: linear-gradient(135deg, #1565c0, #0a2c5e);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(30, 136, 229, 0.5);
            text-decoration: none;
        }
        header {
            background: linear-gradient(180deg, #0a1a2a 0%, #0c2236 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(to right, #00e5ff, #2979ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(41, 121, 255, 0.3);
        }
        .logo a:hover {
            text-decoration: none;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 20px;
        }
        .desktop-nav a:hover {
            background-color: rgba(79, 195, 247, 0.15);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4fc3f7;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #0c2236;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid #1a3a5a;
            font-size: 1.2rem;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #0c2236;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #bbbbbb;
        }
        .breadcrumb span {
            color: #777;
            margin: 0 8px;
        }
        .hero {
            background: radial-gradient(circle at top right, #1a3a5a, #0a1a2a);
            padding: 60px 0;
            text-align: center;
            border-bottom: 2px solid #1e88e5;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, #4fc3f7, #29b6f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #cccccc;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #0c2236;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        article h2 {
            font-size: 2.2rem;
            color: #4fc3f7;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #1a3a5a;
        }
        article h3 {
            font-size: 1.7rem;
            color: #29b6f6;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        article p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        article b, article strong {
            color: #ffffff;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a3a5a, #0d47a1);
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #00e5ff;
            margin: 30px 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #aaaaaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: #0c2236;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .widget h3 {
            color: #4fc3f7;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .search-form input {
            width: 100%;
            padding: 12px 20px;
            border-radius: 50px;
            border: 2px solid #1a3a5a;
            background-color: #0a1a2a;
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            margin-top: 15px;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        .rating-stars .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star.active,
        .rating-stars .star:hover {
            color: #ffeb3b;
        }
        .rating-form input, .rating-form select, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border-radius: 8px;
            border: 1px solid #1a3a5a;
            background-color: #0a1a2a;
            color: white;
        }
        .footer-links {
            background-color: #0c2236;
            padding: 40px 0;
            border-top: 2px solid #1a3a5a;
            border-bottom: 2px solid #1a3a5a;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        @media (max-width: 768px) {
            .web-link-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: #1a3a5a;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            background-color: #0d47a1;
            transform: translateY(-5px);
        }
        footer {
            background-color: #0a1a2a;
            padding: 30px 0;
            text-align: center;
        }
        .copyright {
            color: #777;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            article {
                padding: 25px;
            }
            article h2 {
                font-size: 1.8rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
            .widget {
                padding: 20px;
            }
        }
