        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1a365d; 
            --secondary: #c53030; 
            --accent: #2d3748; 
            --light: #f7fafc;
            --text: #2d3748;
            --text-light: #718096;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f0f4f8;
            color: var(--text);
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 4rem 0;
        }
        .text-center {
            text-align: center;
        }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        .highlight {
            background-color: #fff3cd;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        header {
            background-color: var(--primary);
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #fff, #c53030);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .search-form {
            display: flex;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            padding: 5px;
            max-width: 300px;
            width: 100%;
        }
        .search-form input {
            flex: 1;
            border: none;
            padding: 0.7rem 1rem;
            outline: none;
        }
        .search-form button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            cursor: pointer;
            border-radius: 25px;
        }
        .search-form button:hover {
            background: #9b2c2c;
        }
        .breadcrumb {
            background-color: var(--accent);
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #cbd5e0;
        }
        .breadcrumb a:hover {
            color: white;
        }
        .breadcrumb span {
            color: #a0aec0;
            margin: 0 8px;
        }
        nav {
            background-color: var(--accent);
        }
        .nav-desktop {
            display: flex;
            list-style: none;
            justify-content: center;
        }
        .nav-desktop li {
            position: relative;
        }
        .nav-desktop a {
            color: #e2e8f0;
            padding: 1rem 1.5rem;
            display: block;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            background-color: var(--primary);
            color: white;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-desktop a:hover::after {
            width: 80%;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--accent);
            list-style: none;
            padding: 0;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #e2e8f0;
            padding: 1rem 1.5rem;
            border-top: 1px solid #4a5568;
            display: block;
        }
        .nav-mobile a:hover {
            background-color: var(--primary);
        }
        main {
            background-color: white;
            box-shadow: var(--shadow);
            border-radius: 10px;
            overflow: hidden;
            margin: 2rem auto;
            padding: 3rem;
        }
        @media (max-width: 768px) {
            main {
                padding: 1.5rem;
                margin: 1rem auto;
            }
        }
        h1 {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid var(--secondary);
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--accent);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }
        h3 {
            font-size: 1.7rem;
            color: var(--primary);
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-light);
            margin: 2rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        strong {
            color: var(--primary);
            font-weight: 700;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        blockquote {
            border-left: 5px solid var(--secondary);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--text-light);
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image figcaption {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 0.5rem;
            font-style: italic;
        }
        .interactive-module {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            padding: 2.5rem;
            margin: 3rem 0;
            border-left: 6px solid var(--secondary);
        }
        .module-title {
            display: flex;
            align-items: center;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        .module-title i {
            margin-right: 15px;
            font-size: 1.8rem;
        }
        .rating-form, .comment-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--accent);
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 0.8rem 1rem;
            border: 1px solid #cbd5e0;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            direction: rtl; 
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #e2e8f0;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #f6c23e;
        }
        .btn-submit {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            grid-column: 1 / -1;
            justify-self: start;
        }
        .btn-submit:hover {
            background-color: #9b2c2c;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--primary);
            color: #cbd5e0;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #cbd5e0;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: #2d3748;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        friend-link a {
            color: #90cdf4;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #4a5568;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 1024px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            .section-padding { padding: 3rem 0; }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            .search-form {
                max-width: 100%;
            }
            .nav-desktop {
                display: none;
            }
            .menu-toggle {
                display: block;
                position: absolute;
                top: 1rem;
                right: 20px;
            }
            .nav-mobile {
                width: 100%;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            main { padding: 1.5rem; }
            .interactive-module { padding: 1.5rem; }
            .rating-form, .comment-form { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
            .breadcrumb { font-size: 0.8rem; }
            .footer-content { grid-template-columns: 1fr; }
        }
