        * {
            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: #f9f9f9;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: transform 0.3s ease;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .logo span {
            color: #ffcc00;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 2rem;
        }
        nav ul li a {
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background 0.3s, color 0.3s;
        }
        nav ul li a:hover {
            background: #ffcc00;
            color: #6a11cb;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 0.5rem 0;
            margin-top: 0.5rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
        }
        .breadcrumb li:after {
            content: '/';
            margin-left: 0.5rem;
        }
        .breadcrumb li:last-child:after {
            content: '';
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
            margin-top: 1rem;
        }
        article {
            padding: 0 1rem;
        }
        h1 {
            font-size: 2.5rem;
            color: #6a11cb;
            margin-bottom: 1rem;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #2575fc;
            margin: 2rem 0 1rem;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #333;
            margin: 1.5rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background: #fffacd;
            padding: 1rem;
            border-left: 4px solid #ffcc00;
            margin: 1.5rem 0;
            font-style: italic;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-image {
            text-align: center;
            margin: 2rem 0;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .functional-sections {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .section-box {
            background: #f1f8ff;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .section-box:hover {
            transform: translateY(-5px);
        }
        .section-box h3 {
            color: #6a11cb;
            margin-top: 0;
        }
        .section-box form {
            display: flex;
            flex-direction: column;
        }
        .section-box input, .section-box textarea, .section-box select {
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        .section-box button {
            background: #6a11cb;
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .section-box button:hover {
            background: #2575fc;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.5rem;
            color: #ccc;
            cursor: pointer;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffcc00;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .web-link {
            background: #e9ecef;
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
        }
        .web-link a {
            color: #6a11cb;
            font-weight: bold;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: #2c3e50;
            color: white;
            padding: 2rem 0;
            text-align: center;
            margin-top: 2rem;
        }
        footer .copyright {
            margin-top: 1rem;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 0.5rem 0;
                width: 100%;
            }
            nav ul li a {
                display: block;
                text-align: center;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1rem;
                right: 1rem;
            }
            .functional-sections {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
