        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: #00b4d8;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #90e0ef;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            padding: 40px 0;
        }
        header {
            background-color: #1a1f2e;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ff4655;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #00b4d8;
        }
        .nav-menu {
            display: flex;
            gap: 25px;
        }
        .nav-menu a {
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-menu a:hover {
            background-color: #2a3142;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #00b4d8;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #00b4d8;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
            padding: 60px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3rem;
            color: #ff4655;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .article-section {
            background-color: #1a1f2e;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        .article-section h2 {
            font-size: 2.2rem;
            color: #00b4d8;
            margin-bottom: 20px;
            border-left: 5px solid #ff4655;
            padding-left: 15px;
        }
        .article-section h3 {
            font-size: 1.8rem;
            color: #90e0ef;
            margin: 25px 0 15px;
        }
        .article-section p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background-color: #2a3142;
            padding: 20px;
            border-left: 4px solid #ff4655;
            margin: 25px 0;
            border-radius: 5px;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }
        .form-section {
            background-color: #1a1f2e;
            padding: 30px;
            border-radius: 10px;
            margin-top: 40px;
        }
        .form-section h2 {
            color: #00b4d8;
            margin-bottom: 20px;
            font-size: 2rem;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #2a3142;
            border-radius: 5px;
            background-color: #0f1419;
            color: #e0e0e0;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #00b4d8;
        }
        button {
            padding: 12px 25px;
            background-color: #ff4655;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
        }
        button:hover {
            background-color: #d93a4a;
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .star {
            font-size: 1.5rem;
            color: #aaa;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover, .star.active {
            color: #ffcc00;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 40px 0;
        }
        @media (min-width: 768px) {
            .web-links {
                grid-template-columns: repeat(5, 1fr);
            }
        }
        .web-link {
            background-color: #1a1f2e;
            padding: 15px;
            border-radius: 5px;
            text-align: center;
        }
        .web-link a {
            display: block;
            font-size: 1rem;
            color: #90e0ef;
        }
        .web-link a:hover {
            color: #00b4d8;
        }
        footer {
            background-color: #0a0e14;
            padding: 30px 0;
            text-align: center;
            color: #aaa;
            border-top: 2px solid #2a3142;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #1a1f2e;
                padding: 20px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            }
            .nav-menu.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .article-section h2 {
                font-size: 1.8rem;
            }
            .article-section h3 {
                font-size: 1.5rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        .nav-menu a, button, .star, .web-link {
            transition: transform 0.2s ease;
        }
        .nav-menu a:hover, button:hover, .star:hover, .web-link:hover {
            transform: translateY(-3px);
        }
        .article-section {
            transition: box-shadow 0.3s ease;
        }
        .article-section:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }
