        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #0056b3;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #003d82;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.5rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background: linear-gradient(135deg, #0a2e5c 0%, #1a4f8c 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-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #ffd700, #ffed4e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffd700;
            transition: width 0.3s ease;
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ffed4e;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .hero {
            background: linear-gradient(rgba(10, 46, 92, 0.85), rgba(10, 46, 92, 0.9)), url('https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
            color: white;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        .search-section {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 3rem;
        }
        .search-section form {
            display: flex;
            max-width: 800px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #ddd;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            border-color: #0056b3;
        }
        .search-btn {
            background: linear-gradient(90deg, #0056b3, #007bff);
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #004494, #0056b3);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .article-content h2, .article-content h3, .article-content h4 {
            color: #0a2e5c;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        .article-content h2 {
            font-size: 2.2rem;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 0.5rem;
        }
        .article-content h3 {
            font-size: 1.8rem;
        }
        .article-content h4 {
            font-size: 1.4rem;
            color: #1a4f8c;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .article-content blockquote {
            border-left: 5px solid #ffd700;
            padding-left: 2rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background: #f9f9f9;
            padding: 1.5rem 2rem;
            border-radius: 0 8px 8px 0;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #ffd700;
            margin: 2rem 0;
        }
        .event-img {
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }
        .event-img img {
            transition: transform 0.5s ease;
        }
        .event-img:hover img {
            transform: scale(1.03);
        }
        .related-links {
            background: #f0f7ff;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .related-links h4 {
            margin-top: 0;
        }
        .related-links ul {
            list-style: none;
            padding-left: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .related-links li {
            margin-bottom: 0.5rem;
        }
        .related-links a {
            display: block;
            padding: 0.75rem 1rem;
            background: white;
            border-radius: 6px;
            border: 1px solid #cce5ff;
            transition: all 0.3s;
        }
        .related-links a:hover {
            background: #0056b3;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0, 86, 179, 0.2);
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .sidebar h3 {
            color: #0a2e5c;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffd700;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .event-list {
            list-style: none;
            padding-left: 0;
        }
        .event-list li {
            padding: 1rem 0;
            border-bottom: 1px dashed #eee;
        }
        .event-list li:last-child {
            border-bottom: none;
        }
        .event-list a {
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        .event-list i {
            margin-right: 10px;
            color: #007bff;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .comment-form, .rating-form {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            border-color: #007bff;
            outline: none;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover, .star.active {
            color: #ffd700;
        }
        .submit-btn {
            background: linear-gradient(90deg, #28a745, #20c997);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background 0.3s;
            width: 100%;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #218838, #1ba87e);
        }
        .site-footer {
            background: #0a2e5c;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: #ffd700;
            margin-bottom: 1rem;
        }
        .friend-links {
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
        }
        .friend-links h4 {
            color: #ffd700;
            margin-bottom: 1rem;
        }
        .friend-links ul {
            list-style: none;
            padding-left: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }
        .friend-links a {
            color: #cce5ff;
            display: block;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }
        .friend-links a:hover {
            color: #ffd700;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #1a4f8c;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .mobile-menu-btn {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #0a2e5c;
                padding: 1rem;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
            }
            .main-nav.active ul {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav li {
                margin: 0.5rem 0;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-input, .search-btn {
                border-radius: 50px;
                margin-bottom: 10px;
            }
            .article-content {
                padding: 1.5rem;
            }
            .sidebar {
                position: static;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .icon-list li {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
        }
        .icon-list i {
            margin-right: 10px;
            color: #007bff;
            width: 20px;
        }
