        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2c5aa0;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1a3a6e;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #2c5aa0 0%, #1a3a6e 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #ffd700;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: white;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9eff5;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #666;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: white;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            padding: 2.5rem;
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a3a6e;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #2c5aa0;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9eff5;
        }
        h3 {
            font-size: 1.5rem;
            color: #3a6bc5;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fff8e1;
            border-left: 4px solid #ffd700;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        b {
            color: #1a3a6e;
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .form-section {
            background-color: #f9fbfd;
            border: 1px solid #dce5f0;
            border-radius: 10px;
            padding: 2rem;
            margin: 2.5rem 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2c5aa0;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #b0c4de;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2c5aa0;
            box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.2);
        }
        button {
            background: linear-gradient(to right, #2c5aa0, #3a6bc5);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(44, 90, 160, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffd700;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            border: 1px solid #dce5f0;
            border-radius: 8px;
            padding: 1.2rem;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }
        footer {
            background-color: #1a3a6e;
            color: white;
            padding: 2.5rem 0;
            text-align: center;
        }
        .copyright {
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: #b0c4de;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background-color: #1a3a6e;
                width: 80%;
                height: calc(100vh - 70px);
                padding: 2rem;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                margin: 1.5rem 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .header-container, .breadcrumb ol {
                flex-wrap: wrap;
            }
            .footer-links {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            article {
                padding: 1.5rem;
            }
            .form-section {
                padding: 1.5rem;
            }
            button {
                width: 100%;
            }
        }
