        * {
            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.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        ul, ol {
            list-style-position: inside;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
        }
        .section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #2d3436;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #ff6b6b, #ee5a52);
            border-radius: 2px;
        }
        .highlight {
            background-color: #fff9db;
            padding: 20px;
            border-left: 5px solid #ffd43b;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        .card:hover {
            transform: translateY(-10px);
        }
        .header {
            background: linear-gradient(135deg, #1a237e, #311b92);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
        }
        .logo-icon {
            color: #ffd700;
            margin-right: 10px;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            position: relative;
            padding: 5px 0;
        }
        .nav-desktop a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffd700;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #311b92;
            padding: 20px;
            flex-direction: column;
            gap: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #e3f2fd;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #1a237e;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(49, 27, 146, 0.9)), url('https://images.unsplash.com/photo-1632501641765-e568d28b0015?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 20px;
            border-radius: 0 0 30px 30px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #ddd;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-input:focus {
            border-color: #ff6b6b;
        }
        .search-btn {
            padding: 15px 30px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(135deg, #ee5a52, #d64541);
        }
        .content-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-main {
                grid-template-columns: 1fr;
            }
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #1a237e;
        }
        .article-content h3 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: #311b92;
        }
        .article-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content ul, .article-content ol {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        .article-content li {
            margin-bottom: 10px;
        }
        .featured-image {
            border-radius: 15px;
            overflow: hidden;
            margin: 30px 0;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .side-widget {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        .side-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #1a237e;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 10px;
        }
        .comments-section, .rating-section {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-top: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-label {
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-input, .form-textarea, .form-select {
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus, .form-select:focus {
            border-color: #ff6b6b;
            outline: none;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            direction: rtl;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star:hover,
        .star:hover ~ .star {
            color: #ffd700;
        }
        .star.active {
            color: #ffd700;
        }
        .footer-links {
            background: #1a237e;
            color: white;
            padding: 40px 0;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        @media (max-width: 768px) {
            .web-links-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            padding: 15px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            text-align: center;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.2);
        }
        .footer {
            background: #0d1440;
            color: #b0b0b0;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            width: 100%;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-btn {
                border-radius: 50px;
                margin-bottom: 10px;
            }
        }
