* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #0056A9;
            --secondary: #D22630;
            --accent: #FFD700;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --gray: #6C757D;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent), white);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--accent);
        }
        .search-box {
            flex: 0 1 400px;
            display: flex;
            margin: 0 20px;
        }
        .search-box input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: var(--secondary);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 25px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #b02028;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--accent);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        nav a:hover {
            color: var(--accent);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            background-color: rgba(255,255,255,0.1);
            padding: 12px 20px;
            border-radius: 8px;
            margin-top: 15px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--accent);
        }
        .breadcrumb i {
            margin: 0 8px;
            font-size: 0.8rem;
        }
        .hero {
            background: linear-gradient(rgba(26,26,46,0.85), rgba(26,26,46,0.9)), url('https://images.unsplash.com/photo-1636489953087-c94433f52b8f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 5rem 2rem;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ddd;
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(to right, var(--secondary), #FF6B6B);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 1px;
            transition: var(--transition);
            box-shadow: 0 6px 20px rgba(210, 38, 48, 0.4);
            text-transform: uppercase;
        }
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(210, 38, 48, 0.6);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 4rem;
        }
        .content {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        article h2 {
            color: var(--primary);
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--accent);
        }
        article h3 {
            color: var(--dark);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
            padding-left: 15px;
            border-left: 5px solid var(--secondary);
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        article emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255,215,0,0.15) 0%, rgba(255,215,0,0) 100%);
            border-left: 4px solid var(--accent);
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: var(--light);
            border-radius: 15px;
            padding: 1.8rem;
            text-align: center;
            border-top: 5px solid var(--primary);
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.08);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        .stat-card h4 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .image-article {
            width: 100%;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: var(--transition);
        }
        .image-article:hover {
            transform: scale(1.01);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .quote {
            font-style: italic;
            font-size: 1.3rem;
            color: var(--primary);
            text-align: center;
            max-width: 900px;
            margin: 3rem auto;
            padding: 2.5rem;
            background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80') center/cover no-repeat;
            background-blend-mode: overlay;
            background-color: rgba(255,255,255,0.9);
            border-radius: 20px;
            position: relative;
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 4rem;
            color: var(--secondary);
            position: absolute;
            opacity: 0.5;
        }
        .quote::before { top: 10px; left: 20px; }
        .quote::after { bottom: 10px; right: 20px; }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .comparison-table th, .comparison-table td {
            padding: 18px 20px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        .comparison-table th {
            background: var(--primary);
            color: white;
            font-weight: 700;
        }
        .comparison-table tr:nth-child(even) {
            background: #f9f9f9;
        }
        .comparison-table tr:hover {
            background: #e3f2fd;
        }
        .side-panel {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .side-widget {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }
        .side-widget h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px dashed #ddd;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 14px;
            border: 1px solid #ccc;
            border-radius: 10px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0,86,169,0.2);
        }
        .submit-btn {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }
        .submit-btn:hover {
            background: #b02028;
        }
        .rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 1rem 0;
        }
        .rating input { display: none; }
        .rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating label:hover,
        .rating label:hover ~ label,
        .rating input:checked ~ label {
            color: var(--accent);
        }
        .comments-section {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 2px solid #eee;
        }
        .comment {
            display: flex;
            gap: 20px;
            padding: 1.8rem;
            background: #f9f9f9;
            border-radius: 15px;
            margin-bottom: 1.5rem;
        }
        .comment-avatar {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
        }
        .comment-content h4 {
            color: var(--dark);
            margin-bottom: 5px;
        }
        .comment-meta {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 10px;
        }
        .comment-meta i {
            color: var(--accent);
            margin-right: 5px;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 3rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, var(--accent), white);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .footer-links h4 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            transition: var(--transition);
            color: #ccc;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 8px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
        }
        friend-link h4 {
            color: var(--accent);
            margin-bottom: 1.5rem;
        }
        friend-link a {
            color: white;
            font-weight: 600;
            padding: 12px 20px;
            background: rgba(0,86,169,0.3);
            border-radius: 10px;
            display: inline-block;
            transition: var(--transition);
        }
        friend-link a:hover {
            background: rgba(0,86,169,0.6);
            transform: translateX(10px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            article h2 {
                font-size: 1.9rem;
            }
            .header-top {
                flex-direction: column;
                align-items: stretch;
            }
            .search-box {
                flex: 1;
                margin: 20px 0;
                order: 3;
            }
            nav ul {
                flex-direction: column;
                gap: 1rem;
                display: none;
                margin-top: 20px;
            }
            nav.active ul {
                display: flex;
            }
            .mobile-toggle {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
        }
        @media (max-width: 768px) {
            .hero {
                padding: 3rem 1rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .content {
                padding: 2rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
