        * {
            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: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            color: #2c5aa0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1a3a6e;
            text-decoration: underline;
        }
        header {
            background: #2c5aa0;
            color: white;
            padding: 1.5rem 0;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(90deg, #ffd700, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding: 0.5rem;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
        }
        .desktop-nav a:hover {
            background: rgba(255,255,255,0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            width: 100%;
            background: #1a3a6e;
            border-radius: 8px;
            margin-top: 1rem;
            overflow: hidden;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background: #e9f0fa;
            padding: 1rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #2c5aa0;
        }
        .breadcrumb span {
            color: #666;
        }
        main {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 25px rgba(0,0,0,0.08);
            margin-bottom: 2.5rem;
        }
        h1 {
            font-size: 3.2rem;
            color: #2c5aa0;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-bottom: 4px solid #ffd700;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.4rem;
            color: #1a3a6e;
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.8rem;
            border-left: 5px solid #2c5aa0;
        }
        h3 {
            font-size: 1.9rem;
            color: #2c5aa0;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #3a6bc2;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: #f0f7ff;
            padding: 1.5rem;
            border-left: 5px solid #2c5aa0;
            margin: 1.8rem 0;
            border-radius: 0 8px 8px 0;
        }
        em {
            color: #d35400;
            font-style: italic;
        }
        strong {
            color: #1a3a6e;
            font-weight: 800;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 0.5rem;
        }
        .featured-image {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: 12px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 3px solid #2c5aa0;
        }
        .search-box {
            background: #f8fafd;
            padding: 2rem;
            border-radius: 10px;
            margin: 2.5rem 0;
            text-align: center;
            border: 2px dashed #2c5aa0;
        }
        .search-box input {
            width: 70%;
            padding: 1rem;
            border: 2px solid #2c5aa0;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            padding: 1rem 2rem;
            background: #2c5aa0;
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: #1a3a6e;
        }
        .comment-section, .rating-section {
            background: #f9f9f9;
            padding: 2rem;
            border-radius: 10px;
            margin: 2.5rem 0;
        }
        .comment-section h3, .rating-section h3 {
            color: #1a3a6e;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 1rem;
            margin: 1rem 0;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
            font-size: 2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffd700;
        }
        button[type="submit"] {
            background: #2c5aa0;
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        button[type="submit"]:hover {
            background: #1a3a6e;
        }
        footer {
            background: #1a3a6e;
            color: white;
            padding: 3rem 2rem;
            border-radius: 12px 12px 0 0;
            text-align: center;
        }
        .friend-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }
        .friend-links a {
            color: #ffd700;
            padding: 0.8rem;
            background: rgba(255,255,255,0.1);
            border-radius: 6px;
            transition: background 0.3s ease;
        }
        .friend-links a:hover {
            background: rgba(255,255,255,0.2);
            text-decoration: none;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.3);
            font-size: 0.95rem;
            color: #ccc;
        }
        .last-updated {
            background: #e9f0fa;
            padding: 1rem;
            border-radius: 8px;
            margin: 2rem 0;
            text-align: center;
            font-weight: bold;
            color: #2c5aa0;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            main {
                padding: 1.5rem;
            }
            .search-box input {
                width: 60%;
            }
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .my-logo {
                font-size: 2.2rem;
                margin-bottom: 1rem;
            }
        }
        @media (max-width: 480px) {
            .search-box input {
                width: 100%;
                border-radius: 50px;
                margin-bottom: 1rem;
            }
            .search-box button {
                width: 100%;
                border-radius: 50px;
            }
            .friend-links {
                grid-template-columns: 1fr;
            }
        }
