        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f0f8ff;
            color: #333;
            line-height: 1.6;
            font-size: 18px;
        }
        a {
            text-decoration: none;
            color: #1e90ff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff4500;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0066cc, #00bfff);
            color: white;
            padding: 20px 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: 2.5rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo a {
            color: inherit;
        }
        .search-form {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 30px;
            padding: 5px 15px;
            min-width: 300px;
        }
        .search-form input {
            border: none;
            outline: none;
            padding: 10px;
            width: 100%;
            border-radius: 30px;
            font-size: 1rem;
        }
        .search-form button {
            background: #ff4500;
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: #ff6347;
        }
        nav {
            background: #003366;
            padding: 15px 0;
            margin-top: 10px;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .nav-links a:hover {
            background: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #e6f2ff;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #ff4500;
        }
        main {
            padding: 40px 0;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-top: 20px;
        }
        article {
            padding: 0 30px;
        }
        h1 {
            font-size: 2.8rem;
            color: #0066cc;
            margin-bottom: 25px;
            text-align: center;
            border-bottom: 3px solid #00bfff;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: #003366;
            margin-top: 40px;
            margin-bottom: 20px;
            border-left: 5px solid #ff4500;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #00509e;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background: #fffacd;
            padding: 20px;
            border-left: 4px solid #ffd700;
            margin: 25px 0;
            border-radius: 8px;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 80%;
            border: 5px solid #00bfff;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .form-section {
            background: #f9f9f9;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #333;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            border-color: #0066cc;
            outline: none;
        }
        .form-group button {
            background: linear-gradient(to right, #0066cc, #00bfff);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .form-group button:hover {
            background: linear-gradient(to right, #00509e, #0099cc);
            transform: scale(1.05);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            margin-top: 10px;
        }
        .rating input[type="radio"] {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating input[type="radio"]:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffd700;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            padding: 40px 0;
            background: #e6f2ff;
        }
        .web-link {
            background: white;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            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);
        }
        .web-link a {
            color: #003366;
            font-weight: 600;
            font-size: 1rem;
        }
        footer {
            background: #003366;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 20px;
            }
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .search-form {
                min-width: 100%;
                margin-top: 15px;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #003366;
                padding: 20px;
                z-index: 1000;
                box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            }
            #nav-toggle:checked ~ .nav-links {
                display: flex;
            }
            .nav-links a {
                padding: 15px;
                text-align: center;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 576px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            .form-group button {
                width: 100%;
            }
        }
