        * {
            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;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #2c5aa0;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1a3c6e;
        }
        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(135deg, #2c5aa0, #4a7bc1);
            color: white;
            padding: 15px 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: 2.2rem;
            font-weight: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ffcc00;
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .nav-desktop a:hover {
            background: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        #nav-toggle {
            display: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #2c5aa0;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        #nav-toggle:checked ~ .nav-mobile {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            background: #e9ecef;
            font-size: 0.95rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
            color: #666;
        }
        main {
            padding: 30px 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 20px auto;
        }
        article {
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #2c5aa0;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            color: #4a7bc1;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffcc00;
        }
        h3 {
            font-size: 1.6rem;
            color: #333;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background: #fffacd;
            padding: 20px;
            border-left: 5px solid #ffcc00;
            margin: 25px 0;
            border-radius: 5px;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 5px;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            max-width: 800px;
            margin: 0 auto;
        }
        .form-section {
            background: #f1f8ff;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            border: 2px solid #d1e3ff;
        }
        .form-title {
            font-size: 1.8rem;
            color: #2c5aa0;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 2px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #2c5aa0;
            outline: none;
        }
        button {
            background: linear-gradient(to right, #2c5aa0, #4a7bc1);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(44, 90, 160, 0.3);
        }
        .rating {
            display: flex;
            gap: 5px;
            margin: 15px 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffcc00;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
            padding: 25px;
            background: #e9ecef;
            border-radius: 10px;
        }
        .web-link {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        .web-link a {
            font-weight: 600;
            color: #2c5aa0;
            display: block;
            padding: 10px;
        }
        footer {
            background: #2c5aa0;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
            width: 100%;
            font-size: 0.95rem;
            opacity: 0.9;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-desktop {
                display: none;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
            .form-section {
                padding: 20px;
            }
        }
        @media (min-width: 769px) {
            .nav-mobile {
                display: none !important;
            }
        }
