        * {
            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;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 1rem 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: 2rem;
            font-weight: bold;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo:hover {
            color: #ffdd44;
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        .search-form {
            display: flex;
            flex: 1;
            max-width: 400px;
            margin: 0 20px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 25px 0 0 25px;
            font-size: 1rem;
        }
        .search-form button {
            background: #ffcc00;
            color: #1e3c72;
            border: none;
            padding: 10px 20px;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            font-weight: bold;
        }
        .search-form button:hover {
            background: #ffdd44;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        nav {
            margin-top: 1rem;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 10px;
        }
        .nav-links a {
            color: white;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .nav-links a:hover {
            background: rgba(255,255,255,0.2);
        }
        .breadcrumb {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        main {
            padding: 2rem 0;
            background: white;
            min-height: 1000px; 
        }
        article {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 15px;
        }
        h1 {
            font-size: 2.5rem;
            color: #1e3c72;
            margin-bottom: 1rem;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #2a5298;
            margin: 2rem 0 1rem;
            border-bottom: 3px solid #ffcc00;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #3a6bc5;
            margin: 1.5rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: #fff9e6;
            padding: 1.5rem;
            border-left: 5px solid #ffcc00;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .image-container {
            text-align: center;
            margin: 2rem 0;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: #f1f8ff;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #2a5298;
            margin-bottom: 1rem;
        }
        .interaction {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            margin: 3rem 0;
            border: 2px solid #e9ecef;
        }
        .interaction h2 {
            text-align: center;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #1e3c72;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 10px 15px;
            border: 1px 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: #2a5298;
            outline: none;
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 1.5rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffcc00;
        }
        button[type="submit"] {
            background: #2a5298;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        button[type="submit"]:hover {
            background: #1e3c72;
        }
        .comments-section {
            margin-top: 3rem;
        }
        .comment {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            border-left: 4px solid #2a5298;
        }
        footer {
            background: #1e3c72;
            color: white;
            padding: 2rem 0;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ffcc00;
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.5rem;
        }
        friend-link a {
            color: #ccc;
            transition: color 0.3s ease;
        }
        friend-link a:hover {
            color: #ffcc00;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .search-form {
                max-width: 100%;
                margin: 1rem 0;
                order: 3;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1rem;
                right: 15px;
            }
            nav {
                display: none;
                width: 100%;
            }
            nav.active {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                gap: 1rem;
                background: rgba(30,60,114,0.95);
                padding: 1.5rem;
                border-radius: 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer-content {
                flex-direction: column;
            }
        }
