* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4a6fa5;
        }
        a:hover {
            color: #ff6b6b;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffd700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a:hover {
            text-shadow: 0 0 10px #ffd700;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover {
            background-color: #ff6b6b;
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        #menu-toggle {
            display: none;
        }
        .mobile-nav {
            display: none;
            background-color: #1e3c72;
            padding: 20px;
            border-top: 2px solid #ffd700;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            color: white;
            font-size: 1.2rem;
            padding: 10px;
            display: block;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background-color: #2a5298;
        }
        #menu-toggle:checked ~ .mobile-nav {
            display: block;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #e9ecef;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #4a6fa5;
        }
        .breadcrumb span {
            color: #666;
        }
        main {
            padding: 30px 0;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 20px auto;
        }
        article {
            padding: 0 30px;
        }
        h1 {
            font-size: 2.8rem;
            color: #1e3c72;
            margin-bottom: 25px;
            text-align: center;
            line-height: 1.3;
        }
        h2 {
            font-size: 2.2rem;
            color: #2a5298;
            margin: 40px 0 20px;
            border-left: 6px solid #ff6b6b;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #4a6fa5;
            margin: 30px 0 15px;
        }
        p {
            font-size: 1.2rem;
            margin-bottom: 25px;
            text-align: justify;
            padding: 0 10px;
        }
        .highlight {
            background-color: #fffacd;
            padding: 20px;
            border-left: 5px solid #ffd700;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 8px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .search-box {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            text-align: center;
            border: 2px dashed #4a6fa5;
        }
        .search-box h3 {
            color: #1e3c72;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 20px auto;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #4a6fa5;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-form button {
            background-color: #ff6b6b;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #ff4757;
        }
        .interaction {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .comment-form, .rating-form {
            background-color: #f1f8ff;
            padding: 25px;
            border-radius: 15px;
            border: 2px solid #a5d8ff;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #1e3c72;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #ffd700;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .submit-btn {
            background-color: #2a5298;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s;
            display: block;
            margin: 20px auto 0;
        }
        .submit-btn:hover {
            background-color: #1e3c72;
            transform: translateY(-5px);
        }
        .web-links {
            background-color: #e9ecef;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .web-links h3 {
            text-align: center;
            color: #1e3c72;
            margin-bottom: 30px;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-10px);
        }
        .web-link a {
            color: #2a5298;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
        }
        footer {
            background-color: #1e3c72;
            color: white;
            text-align: center;
            padding: 30px;
            margin-top: 40px;
        }
        .copyright {
            font-size: 1rem;
            opacity: 0.9;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
        }
        @media (max-width: 768px) {
            .container { padding: 0 15px; }
            article { padding: 0 15px; }
            .interaction { grid-template-columns: 1fr; }
            .search-form { flex-direction: column; }
            .search-form input, .search-form button { border-radius: 50px; margin: 5px 0; }
            .links-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            .logo a { font-size: 1.8rem; }
            .links-grid { grid-template-columns: 1fr; }
            p { font-size: 1.1rem; }
        }
