* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c2461 0%, #1e3799 50%, #4a69bd 100%);
            color: #f7f7f7;
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #f6b93b;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #fa983a;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(12, 36, 97, 0.95);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 3px solid #f6b93b;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #f6b93b;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
        }
        .logo span {
            color: #4a69bd;
        }
        .logo:hover {
            transform: scale(1.02);
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background: rgba(246, 185, 59, 0.15);
        }
        .nav-desktop a i {
            margin-right: 8px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f6b93b;
            background: none;
            border: none;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(12, 36, 97, 0.98);
            padding: 20px;
            border-top: 1px solid #4a69bd;
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
        }
        .nav-mobile li {
            margin: 15px 0;
        }
        .nav-mobile a {
            display: block;
            padding: 12px;
            border-left: 4px solid #f6b93b;
            background: rgba(255,255,255,0.05);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #b8c2e0;
        }
        .breadcrumb a {
            color: #b8c2e0;
        }
        .breadcrumb a:hover {
            color: #f6b93b;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(74, 105, 189, 0.3);
        }
        article h1 {
            font-size: 2.8rem;
            color: #f6b93b;
            margin-bottom: 25px;
            line-height: 1.2;
            border-bottom: 3px dashed #4a69bd;
            padding-bottom: 15px;
        }
        article h2 {
            font-size: 2rem;
            color: #4a69bd;
            margin: 35px 0 20px;
            padding-left: 15px;
            border-left: 5px solid #f6b93b;
        }
        article h3 {
            font-size: 1.5rem;
            color: #82ccdd;
            margin: 25px 0 15px;
        }
        article p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #d1d8f0;
            background: rgba(246, 185, 59, 0.08);
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #f6b93b;
            margin-bottom: 30px;
        }
        .highlight-box {
            background: rgba(74, 105, 189, 0.2);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border: 1px solid #4a69bd;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            overflow: hidden;
        }
        .comparison-table th, .comparison-table td {
            border: 1px solid #4a69bd;
            padding: 15px;
            text-align: left;
        }
        .comparison-table th {
            background: rgba(246, 185, 59, 0.2);
            color: #f6b93b;
        }
        .comparison-table tr:hover {
            background: rgba(74, 105, 189, 0.1);
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 25px 0;
            border: 3px solid #f6b93b;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            transition: transform 0.5s ease;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        .float-right {
            float: right;
            width: 50%;
            margin: 15px 0 15px 25px;
        }
        @media (max-width: 768px) {
            .float-right {
                float: none;
                width: 100%;
                margin: 20px 0;
            }
        }
        emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        blockquote {
            font-style: italic;
            border-left: 4px solid #f6b93b;
            padding-left: 20px;
            margin: 25px 0;
            color: #d1d8f0;
        }
        .interactive-section {
            background: rgba(12, 36, 97, 0.7);
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #f6b93b;
        }
        .interactive-section h3 {
            color: #f6b93b;
            margin-top: 0;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        input, textarea, select {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #4a69bd;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
        }
        input::placeholder, textarea::placeholder {
            color: #b8c2e0;
        }
        button {
            padding: 15px 25px;
            background: linear-gradient(to right, #f6b93b, #fa983a);
            color: #0c2461;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to right, #fa983a, #f6b93b);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(246, 185, 59, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #555;
            margin: 10px 0;
        }
        .star-rating .star {
            cursor: pointer;
            color: #ddd;
            transition: color 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #f6b93b;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(74, 105, 189, 0.3);
        }
        .widget h3 {
            color: #f6b93b;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #4a69bd;
        }
        .widget ul {
            list-style: none;
        }
        .widget li {
            padding: 12px 0;
            border-bottom: 1px dashed rgba(74, 105, 189, 0.5);
        }
        .widget li:last-child {
            border-bottom: none;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 50px 0 30px;
        }
        @media (max-width: 768px) {
            .longtail-links {
                grid-template-columns: 1fr;
            }
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            border-left: 4px solid #4a69bd;
        }
        .web-link:hover {
            background: rgba(74, 105, 189, 0.2);
            border-left-color: #f6b93b;
            transform: translateX(5px);
        }
        .site-footer {
            background: rgba(12, 36, 97, 0.98);
            padding: 40px 0 20px;
            border-top: 3px solid #f6b93b;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #4a69bd;
            color: #b8c2e0;
            font-size: 0.9rem;
            width: 100%;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            article {
                padding: 25px;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
        }
