* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0c2d57;
            --primary-gold: #d4af37;
            --secondary-red: #b30000;
            --accent-teal: #2a9d8f;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --light-text: #6c757d;
            --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1a4b8c 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-gold);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            letter-spacing: 0.5px;
        }
        .my-logo i {
            font-size: 2rem;
        }
        .my-logo:hover {
            color: white;
            transform: scale(1.02);
        }
        .main-nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .nav-link {
            color: #e9ecef;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .nav-link:hover {
            color: var(--primary-gold);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-gold);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .search-box {
            display: flex;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            overflow: hidden;
            padding: 0.3rem;
        }
        .search-input {
            background: transparent;
            border: none;
            color: white;
            padding: 0.5rem 1rem;
            width: 200px;
            outline: none;
        }
        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        .search-button {
            background: var(--primary-gold);
            border: none;
            color: var(--primary-dark);
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-button:hover {
            background: #e6c02e;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 1rem auto;
            padding: 0 1.5rem;
            font-size: 0.9rem;
            color: var(--light-text);
        }
        .breadcrumb a {
            color: var(--accent-teal);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-area {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--card-shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: var(--card-shadow);
        }
        .widget-title {
            color: var(--primary-dark);
            border-bottom: 2px solid var(--primary-gold);
            padding-bottom: 0.8rem;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        h1 {
            color: var(--primary-dark);
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--primary-gold);
        }
        h2 {
            color: var(--primary-dark);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e9ecef;
        }
        h3 {
            color: var(--accent-teal);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: var(--secondary-red);
            font-size: 1.2rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            color: var(--primary-dark);
            font-weight: 600;
            margin-bottom: 2rem;
            padding: 1.2rem;
            background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
            border-left: 4px solid var(--primary-gold);
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.15);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            border-left: 4px solid var(--primary-gold);
        }
        .key-point {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            margin: 1rem 0;
        }
        .key-point i {
            color: var(--primary-gold);
            margin-top: 0.3rem;
            flex-shrink: 0;
        }
        .content-link {
            color: var(--accent-teal);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dotted var(--accent-teal);
            transition: var(--transition);
        }
        .content-link:hover {
            color: var(--primary-dark);
            border-bottom-style: solid;
        }
        .featured-image {
            width: 100%;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.008);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--light-text);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        }
        .comparison-table th {
            background-color: var(--primary-dark);
            color: white;
            padding: 1rem;
            text-align: left;
        }
        .comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid #dee2e6;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .comparison-table tr:hover {
            background-color: rgba(212, 175, 55, 0.1);
        }
        .user-interaction {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
            border: 1px solid #dee2e6;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary-dark);
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--accent-teal);
            box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.2);
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star:hover,
        .star.active {
            color: var(--primary-gold);
        }
        .submit-button {
            background: linear-gradient(to right, var(--primary-dark), #1a4b8c);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(12, 45, 87, 0.2);
        }
        .update-info {
            background-color: rgba(42, 157, 143, 0.1);
            padding: 1rem;
            border-radius: 8px;
            margin-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
        }
        .site-footer {
            background-color: var(--primary-dark);
            color: #e9ecef;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-gold);
            margin-bottom: 1rem;
            display: block;
        }
        .footer-heading {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-gold);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary-gold);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        friend-link a {
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #adb5bd;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
            }
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
                order: 1;
            }
            .main-nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 1rem;
                flex-direction: column;
                align-items: flex-start;
            }
            .main-nav.active {
                display: flex;
            }
            .nav-list {
                flex-direction: column;
                width: 100%;
                gap: 0;
            }
            .nav-list li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .nav-link {
                display: block;
                padding: 1rem 0;
            }
            .search-box {
                width: 100%;
                margin-top: 1rem;
            }
            .search-input {
                width: 100%;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .content-area {
                padding: 1.5rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.9rem;
            }
            .lead {
                font-size: 1.1rem;
                padding: 1rem;
            }
            .user-interaction {
                padding: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-area, .sidebar-widget {
            animation: fadeIn 0.6s ease-out;
        }
        @media print {
            .site-header, .sidebar, .user-interaction, .site-footer {
                display: none;
            }
            .main-container {
                grid-template-columns: 1fr;
                max-width: 100%;
                margin: 0;
                padding: 0;
            }
            body {
                background: white;
                color: black;
                font-size: 12pt;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
