* {
            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;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            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 a {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffcc00;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: transform 0.3s;
        }
        .logo a:hover {
            transform: scale(1.05);
            text-shadow: 0 0 10px #ffcc00;
        }
        .search-form {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 50px;
            padding: 5px 15px;
            margin: 10px 0;
        }
        .search-form input {
            border: none;
            outline: none;
            padding: 10px;
            width: 250px;
            border-radius: 50px;
            font-size: 1rem;
        }
        .search-form button {
            background: #ffcc00;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ff9900;
        }
        .search-form button i {
            color: #1e3c72;
            font-size: 1.2rem;
        }
        nav {
            background: #2a5298;
            margin-top: 20px;
            border-radius: 10px;
        }
        .nav-desktop {
            display: flex;
            list-style: none;
            justify-content: center;
            padding: 15px;
        }
        .nav-desktop li {
            margin: 0 20px;
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .nav-desktop a:hover {
            background: #ffcc00;
            color: #1e3c72;
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            list-style: none;
            background: #2a5298;
            padding: 20px;
            border-radius: 10px;
            margin-top: 10px;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile li {
            margin: 10px 0;
        }
        .nav-mobile a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            padding: 10px;
            display: block;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .nav-mobile a:hover {
            background: #ffcc00;
            color: #1e3c72;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #555;
        }
        .breadcrumb a {
            color: #1e3c72;
            text-decoration: none;
            transition: color 0.3s;
        }
        .breadcrumb a:hover {
            color: #ff9900;
            text-decoration: underline;
        }
        main {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 30px;
            padding: 30px 0;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        .content h1 {
            font-size: 2.8rem;
            color: #1e3c72;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .content h2 {
            font-size: 2rem;
            color: #2a5298;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffcc00;
        }
        .content h3 {
            font-size: 1.5rem;
            color: #ff6600;
            margin: 20px 0 10px;
        }
        .content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }
        .content emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .highlight {
            background: #fffacd;
            padding: 15px;
            border-left: 5px solid #ffcc00;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            transition: transform 0.5s;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .sidebar {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
        }
        .comment-form h3, .rating-form h3 {
            color: #1e3c72;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .comment-form textarea, .rating-form select, .comment-form input, .rating-form input {
            padding: 12px;
            margin-bottom: 15px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .comment-form textarea:focus, .rating-form select:focus, .comment-form input:focus, .rating-form input:focus {
            border-color: #ffcc00;
            outline: none;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-form select {
            background: #f9f9f9;
        }
        .btn {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            text-decoration: none;
        }
        .btn:hover {
            background: linear-gradient(135deg, #ffcc00, #ff9900);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 40px 0;
            padding: 30px;
            background: #2a5298;
            border-radius: 15px;
        }
        @media (max-width: 992px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        .web-link {
            background: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .web-link a {
            color: #1e3c72;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: color 0.3s;
        }
        .web-link a:hover {
            color: #ff9900;
        }
        footer {
            background: #1e3c72;
            color: white;
            text-align: center;
            padding: 30px 0;
            margin-top: 40px;
            border-top: 5px solid #ffcc00;
        }
        .copyright {
            font-size: 1rem;
            margin-top: 20px;
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .search-form {
                width: 100%;
                margin-top: 15px;
            }
            .search-form input {
                width: 100%;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            .content h1 {
                font-size: 2.2rem;
            }
            .content h2 {
                font-size: 1.8rem;
            }
        }
