        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #0066cc;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #004499;
            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, #0066cc);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            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: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: #ffcc00;
            text-decoration: none;
        }
        .logo i {
            font-size: 2.5rem;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        nav ul li a:hover {
            background: rgba(255,255,255,0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 10px 20px;
            margin-bottom: 20px;
            border-radius: 5px;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #0066cc;
        }
        main {
            padding: 30px 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        article {
            padding: 0 25px;
        }
        h1 {
            font-size: 3rem;
            color: #003366;
            margin-bottom: 25px;
            text-align: center;
            line-height: 1.2;
            border-bottom: 3px solid #ffcc00;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: #0066cc;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-left: 10px;
            border-left: 5px solid #ffcc00;
        }
        h3 {
            font-size: 1.8rem;
            color: #004499;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.5rem;
            color: #0055aa;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            padding: 0 5px;
        }
        .highlight {
            background: #fffacd;
            padding: 20px;
            border-left: 4px solid #ffcc00;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        strong {
            color: #003366;
            font-weight: 800;
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
            padding: 15px;
            background: #f1f8ff;
            border-radius: 10px;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            margin: 0 auto;
        }
        .image-container figcaption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 1rem;
        }
        .form-section {
            background: #f0f8ff;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            border: 1px solid #cce5ff;
        }
        .form-section h3 {
            color: #003366;
            margin-top: 0;
        }
        form {
            display: grid;
            gap: 20px;
            max-width: 600px;
            margin: 0 auto;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #0066cc;
            outline: none;
            box-shadow: 0 0 5px rgba(0,102,204,0.3);
        }
        button {
            background: linear-gradient(to right, #0066cc, #004499);
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to right, #004499, #003366);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .rating label {
            font-weight: 600;
            color: #555;
        }
        .stars {
            display: flex;
            gap: 5px;
        }
        .stars i {
            color: #ccc;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .stars i:hover, .stars i.active {
            color: #ffcc00;
        }
        footer {
            background: #003366;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #ffcc00;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #ccddff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }
        friend-link h5 {
            font-size: 1.3rem;
            color: #ffcc00;
            margin-bottom: 15px;
        }
        friend-link a {
            color: #aaccff;
            font-weight: 600;
        }
        friend-link a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #335588;
            font-size: 0.95rem;
            color: #aaccff;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .header-content { flex-wrap: wrap; }
            nav ul { gap: 15px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #004499;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-radius: 0 0 10px 10px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            nav ul.active {
                display: flex;
            }
            nav ul li { margin-bottom: 15px; }
            .breadcrumb { font-size: 0.85rem; }
            article { padding: 0 15px; }
            .footer-content { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            p { font-size: 1rem; }
            .logo a { font-size: 1.8rem; }
            .form-section { padding: 20px; }
        }
