* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            padding: 0;
            margin: 0;
        }
        a {
            text-decoration: none;
            color: #0056b3;
        }
        a:hover {
            color: #003366;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #003366 0%, #0056b3 100%);
            color: white;
            padding: 15px 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 a {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.5rem;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .nav-links a:hover {
            background: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            padding: 10px 0;
            background: #e9ecef;
            margin-top: 5px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb li:after {
            content: '/';
            margin-left: 10px;
            color: #6c757d;
        }
        .breadcrumb li:last-child:after {
            content: '';
        }
        main {
            padding: 30px 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin: 20px auto;
        }
        article {
            padding: 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #003366;
            margin-bottom: 20px;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #0056b3;
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 3px solid #ffcc00;
        }
        h3 {
            font-size: 1.5rem;
            color: #003366;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background: #fff3cd;
            padding: 15px;
            border-left: 5px solid #ffcc00;
            margin: 20px 0;
            border-radius: 5px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .feature-image {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .feature-image img {
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .feature-image figcaption {
            margin-top: 10px;
            font-style: italic;
            color: #666;
        }
        .functional-section {
            margin: 40px 0;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #dee2e6;
        }
        .functional-section h2 {
            border-bottom: none;
            color: #333;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 600px;
            margin: 20px auto;
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            width: 100%;
        }
        button {
            padding: 12px 24px;
            background: #0056b3;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        button:hover {
            background: #003366;
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .rating input[type="radio"] {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
        }
        .rating input:checked ~ label {
            color: #ffcc00;
        }
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffcc00;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }
        .web-link {
            padding: 12px;
            background: #e9ecef;
            border-radius: 5px;
            text-align: center;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-3px);
            background: #dee2e6;
        }
        footer {
            background: #003366;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                width: 100%;
                margin-top: 15px;
            }
            .nav-links {
                flex-direction: column;
                width: 100%;
                display: none;
                gap: 10px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .functional-section {
                padding: 15px;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
        @media (min-width: 769px) {
            .nav-links {
                display: flex !important;
            }
        }
