        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f5f7fa;
            max-width: 100%;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: #0a2463;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #ff6b35;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #1e3a8a;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #3b82f6;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #555;
            background: #e6f7ff;
            padding: 1.5rem;
            border-left: 5px solid #3b82f6;
            border-radius: 0 8px 8px 0;
        }
        .highlight {
            background-color: #fffacd;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .section {
            padding: 3rem 0;
        }
        .site-header {
            background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            color: #ffd166;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            transition: color 0.3s;
        }
        .logo a:hover {
            color: #ff6b35;
        }
        .logo span {
            color: #06d6a0;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: #ff6b35;
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 0.7rem;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #0a2463;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-box {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 700px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #3b82f6;
            border-radius: 8px 0 0 8px;
            font-size: 1.1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-input:focus {
            border-color: #ff6b35;
        }
        .search-btn {
            background: linear-gradient(to right, #3b82f6, #1d4ed8);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 8px 8px 0;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(to right, #ff6b35, #e8590c);
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 5px solid #06d6a0;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .card-body {
            padding: 1.5rem;
        }
        .card-title {
            color: #0a2463;
            margin-bottom: 1rem;
        }
        .interaction-section {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            margin: 3rem 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            border-color: #3b82f6;
            outline: none;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .submit-btn {
            background: linear-gradient(to right, #06d6a0, #059669);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #05a87c, #047857);
            transform: scale(1.05);
        }
        .footer-links {
            background: #1e293b;
            padding: 3rem 0;
        }
        .web-link {
            display: inline-block;
            background: #334155;
            color: #cbd5e1;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: #3b82f6;
            color: white;
            transform: translateY(-3px);
        }
        .site-footer {
            background: #0f172a;
            color: #94a3b8;
            text-align: center;
            padding: 2rem 0;
        }
        .copyright {
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .main-nav ul {
                gap: 1rem;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1e3a8a;
                padding: 1rem;
                border-top: 2px solid #ff6b35;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .main-nav.active ul {
                display: flex;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                border-radius: 6px;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-btn {
                border-radius: 8px;
                width: 100%;
            }
            .search-btn {
                margin-top: 1rem;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
