        * {
            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: #f8f9fa;
            max-width: 100vw;
            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;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background-color: #fffacd;
            padding: 2px 5px;
            border-radius: 3px;
        }
        .site-header {
            background: linear-gradient(135deg, #0033a0 0%, #0066cc 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-size: 1.8rem;
            font-weight: 900;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a i {
            color: #ffcc00;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: #ffcc00;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffcc00;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #002d72;
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 0.8rem 0;
        }
        .mobile-nav a {
            color: white;
            font-weight: 600;
            display: block;
            padding: 0.5rem;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background-color: #0056b3;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 8px;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #495057;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-content {
            background-color: white;
            padding: 2.5rem 0;
            min-height: 80vh;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
        }
        h1 {
            font-size: 2.8rem;
            color: #0033a0;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #ffcc00;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #0056b3;
            margin: 2.5rem 0 1.2rem;
            padding-left: 10px;
            border-left: 5px solid #ffcc00;
        }
        h3 {
            font-size: 1.6rem;
            color: #0066cc;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #007bff;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #495057;
            font-weight: 500;
            margin-bottom: 2rem;
            padding: 1rem;
            background-color: #f8f9fa;
            border-left: 4px solid #0033a0;
        }
        .featured-image {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            max-width: 800px;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.8rem;
            background-color: #f8f9fa;
            font-size: 0.95rem;
        }
        .info-box {
            background: linear-gradient(to right, #f0f8ff, #e6f2ff);
            border-left: 5px solid #0033a0;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .info-box h3 {
            margin-top: 0;
            color: #0033a0;
        }
        .tick-list {
            list-style: none;
            padding-left: 0;
        }
        .tick-list li {
            margin-bottom: 0.8rem;
            padding-left: 2rem;
            position: relative;
        }
        .tick-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }
        .internal-links {
            background-color: #f1f8ff;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2.5rem 0;
        }
        .internal-links h3 {
            margin-top: 0;
            color: #0056b3;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        .links-grid a {
            display: block;
            padding: 0.8rem;
            background-color: white;
            border: 1px solid #cce5ff;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .links-grid a:hover {
            background-color: #0056b3;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,86,179,0.2);
        }
        .interactive-modules {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .module {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #dee2e6;
        }
        .module h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #495057;
        }
        .module h3 i {
            color: #0056b3;
        }
        .module form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .module input,
        .module textarea,
        .module select {
            padding: 0.8rem;
            border: 1px solid #ced4da;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        .module textarea {
            min-height: 120px;
            resize: vertical;
        }
        .module button {
            background: linear-gradient(to right, #0056b3, #003d82);
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .module button:hover {
            background: linear-gradient(to right, #004494, #002d72);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,86,179,0.3);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 5px;
            direction: rtl; 
            margin: 1rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffcc00;
        }
        .site-footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 0.7rem;
        }
        .footer-section a {
            color: #bdc3c7;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #ffcc00;
        }
        .friend-links {
            background-color: #34495e;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1rem;
        }
        friend-link {
            display: inline-block;
            margin-right: 1rem;
            margin-bottom: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #4a6278;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .interactive-modules {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .header-container {
                padding: 0 15px;
            }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            h3 { font-size: 1.4rem; }
            .lead { font-size: 1.1rem; }
            .links-grid {
                grid-template-columns: 1fr;
            }
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .container, .breadcrumb {
                padding-left: 15px;
                padding-right: 15px;
            }
            .module {
                padding: 1.5rem;
            }
            h1 { font-size: 1.8rem; }
        }
