        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        a {
            text-decoration: none;
            color: #2c5aa0;
        }
        a:hover {
            color: #1e3a6f;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #1e3a6f, #2c5aa0);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2rem;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .nav-links a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .nav-links a:hover {
            background: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #ddd;
        }
        .breadcrumb a {
            color: #ddd;
        }
        .breadcrumb a:hover {
            color: white;
        }
        main {
            padding: 2rem 0;
            background: white;
            min-height: 100vh;
        }
        article {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        h1, h2, h3 {
            color: #1e3a6f;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
            border-bottom: 3px solid #2c5aa0;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            margin-top: 2rem;
            border-left: 5px solid #2c5aa0;
            padding-left: 10px;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        .highlight {
            background: #fff8e1;
            padding: 1.5rem;
            border-left: 4px solid #ffc107;
            margin: 1.5rem 0;
            border-radius: 5px;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .featured-img {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        .featured-img img {
            display: block;
            width: 100%;
            transition: transform 0.5s;
        }
        .featured-img img:hover {
            transform: scale(1.02);
        }
        .form-section {
            background: #f1f8ff;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #1e3a6f;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #2c5aa0;
            outline: none;
        }
        button {
            background: #2c5aa0;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s, transform 0.2s;
        }
        button:hover {
            background: #1e3a6f;
            transform: translateY(-2px);
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 1.5rem;
            color: #ffc107;
            cursor: pointer;
        }
        .internal-links {
            background: #e9f0f7;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .web-link {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 0.5rem 1rem;
            background: white;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        footer {
            background: #1e3a6f;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1e3a6f;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                z-index: 1000;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .form-section {
                padding: 1.5rem;
            }
            .header-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .logo {
                font-size: 1.5rem;
            }
        }
        @media (min-width: 769px) {
            .nav-links {
                display: flex !important;
            }
        }
