        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            padding: 0;
            margin: 0;
        }
        a {
            text-decoration: none;
            color: #d4af37;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #b8941f;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, #1a237e 0%, #283593 100%);
            color: #fff;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: #ffd700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #fff;
        }
        .logo:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        .breadcrumb {
            margin: 10px 0;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ffd700;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links li a {
            color: #fff;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .nav-links li a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fff;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #283593;
                padding: 20px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
        }
        main {
            padding: 30px 0;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin: 20px auto;
        }
        article {
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 20px;
            text-align: center;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #283593;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 5px solid #d4af37;
        }
        h3 {
            font-size: 1.5rem;
            color: #5c6bc0;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
            color: #444;
        }
        .emphasis {
            font-weight: bold;
            color: #1a237e;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .highlight {
            background: #fff9c4;
            padding: 10px;
            border-left: 4px solid #ffd700;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            max-width: 80%;
            margin: 0 auto;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .functional-section {
            margin: 40px 0;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #e0e0e0;
        }
        .functional-section h2 {
            color: #1a237e;
            border-left: none;
            text-align: center;
            padding-left: 0;
        }
        .search-box, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 600px;
            margin: 0 auto;
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            width: 100%;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #d4af37;
            outline: none;
        }
        button {
            padding: 12px 25px;
            background: linear-gradient(90deg, #d4af37 0%, #b8941f 100%);
            color: #fff;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        button:hover {
            background: linear-gradient(90deg, #b8941f 0%, #9a7c18 100%);
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 10px 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .internal-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 40px 0;
            padding: 20px;
            background: #f1f8ff;
            border-radius: 10px;
        }
        .web-link {
            padding: 12px;
            background: #fff;
            border: 1px solid #d4af37;
            border-radius: 5px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        .web-link a {
            color: #1a237e;
            font-weight: 600;
        }
        footer {
            background: #1a237e;
            color: #fff;
            padding: 30px 0 15px;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .copyright {
            font-size: 0.9rem;
            color: #ccc;
            border-top: 1px solid #283593;
            padding-top: 15px;
            width: 100%;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .nav-links {
                gap: 15px;
            }
            .internal-links {
                grid-template-columns: 1fr;
            }
        }
        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, #d4af37, #1a237e);
            margin: 30px 0;
            border: none;
        }
        .quote {
            font-style: italic;
            color: #5c6bc0;
            text-align: center;
            margin: 25px 0;
            padding: 15px;
            border-top: 2px dashed #d4af37;
            border-bottom: 2px dashed #d4af37;
        }
