:root {
            --primary-blue: #006994;
            --secondary-gold: #c39738;
            --dark-navy: #0a1a2a;
            --light-sand: #f5e8c8;
            --accent-coral: #e15546;
            --text-dark: #333333;
            --text-light: #f8f9fa;
            --shadow: 0 4px 12px rgba(0, 105, 148, 0.15);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(180deg, #f0f8ff 0%, #ffffff 100%);
            background-attachment: fixed;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, var(--secondary-gold), var(--light-sand));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            transition: var(--transition);
        }
        .my-logo:hover {
            text-shadow: 0 0 8px rgba(195, 151, 56, 0.5);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
            transition: var(--transition);
        }
        .nav-desktop a:hover,
        .nav-desktop a:focus {
            border-color: var(--secondary-gold);
            color: var(--secondary-gold);
        }
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger-btn {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--dark-navy);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: var(--text-light);
            text-decoration: none;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            color: var(--secondary-gold);
            padding-left: 10px;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            background-color: var(--light-sand);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--primary-blue);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--text-dark);
        }
        .search-module {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--primary-blue);
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: var(--dark-navy);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 2rem;
            border-bottom: 3px solid var(--secondary-gold);
            padding-bottom: 1rem;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: var(--dark-navy);
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-size: 0.9rem;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .article-meta i {
            color: var(--secondary-gold);
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            border: 5px solid var(--light-sand);
        }
        .article-content h2 {
            color: var(--primary-blue);
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--primary-blue);
        }
        .article-content h3 {
            color: var(--dark-navy);
            margin: 2rem 0 1rem 0;
        }
        .article-content h4 {
            color: var(--accent-coral);
            margin: 1.5rem 0 0.8rem 0;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight-box {
            background-color: #e6f2ff;
            border-left: 5px solid var(--primary-blue);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box strong {
            color: var(--primary-blue);
        }
        .price-comparison {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .price-card {
            background: white;
            border: 2px solid var(--light-sand);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            transition: var(--transition);
        }
        .price-card:hover {
            transform: translateY(-5px);
            border-color: var(--secondary-gold);
            box-shadow: var(--shadow);
        }
        .price-card h4 {
            color: var(--dark-navy);
        }
        .price-amount {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent-coral);
            margin: 0.5rem 0;
        }
        .price-note {
            font-size: 0.9rem;
            color: #666;
        }
        .btn {
            display: inline-block;
            background: var(--secondary-gold);
            color: var(--dark-navy);
            padding: 0.8rem 1.8rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            margin-top: 1rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.05);
        }
        .internal-link {
            color: var(--primary-blue);
            text-decoration: underline;
            font-weight: 600;
        }
        .internal-link:hover {
            color: var(--accent-coral);
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            align-self: start;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: var(--dark-navy);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-gold);
        }
        .rating-module {
            text-align: center;
        }
        .stars {
            color: var(--secondary-gold);
            font-size: 1.5rem;
            margin: 1rem 0;
        }
        .star {
            cursor: pointer;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-input,
        .form-textarea {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
        }
        .form-textarea {
            min-height: 100px;
            resize: vertical;
        }
        .site-footer {
            background: var(--dark-navy);
            color: var(--text-light);
            padding: 3rem 0 1.5rem 0;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--secondary-gold), var(--light-sand));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1rem 0;
        }
        friend-link {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        friend-link a {
            color: var(--light-sand);
            text-decoration: none;
        }
        friend-link:hover {
            background: var(--primary-blue);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        .text-bold {
            font-weight: 800;
            color: var(--primary-blue);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .last-updated {
            background-color: #fff9e6;
            padding: 1rem;
            border-radius: 5px;
            margin: 2rem 0;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .article-content {
                padding: 1.5rem;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .price-comparison {
                grid-template-columns: 1fr;
            }
        }
