        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #1a73e8;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0d47a1;
            text-decoration: underline;
        }
        ul, ol {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        .site-header {
            background-color: #202124;
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo span {
            color: #4CAF50;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e8eaed;
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            color: #4CAF50;
            border-bottom-color: #4CAF50;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e8f0fe;
            padding: 0.8rem 0;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            padding-left: 0;
            margin-bottom: 0;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin: 0 10px;
            color: #5f6368;
        }
        .breadcrumb a {
            color: #5f6368;
        }
        .breadcrumb a:hover {
            color: #1a73e8;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .main-article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .article-meta {
            color: #5f6368;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #202124;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #1a73e8;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e8f0fe;
        }
        h3 {
            font-size: 1.6rem;
            color: #333;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #5f6368;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #1a73e8;
            font-weight: 500;
            margin-bottom: 2rem;
            padding-left: 1rem;
            border-left: 4px solid #4CAF50;
        }
        .highlight {
            background-color: #fff8e1;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #ffb300;
            margin: 2rem 0;
        }
        .feature-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        blockquote {
            font-style: italic;
            color: #555;
            border-left: 4px solid #4CAF50;
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
            background: #f1f8ff;
            padding: 2rem;
            border-radius: 10px;
        }
        .stat-item {
            text-align: center;
            padding: 1rem;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1a73e8;
            display: block;
        }
        .stat-label {
            font-size: 1rem;
            color: #5f6368;
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            color: #202124;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }
        .widget-links li {
            margin-bottom: 0.8rem;
            list-style: none;
            padding-left: 0;
        }
        .widget-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.8rem;
            border-radius: 6px;
            background: #f8f9fa;
        }
        .widget-links a:hover {
            background: #e8f0fe;
            text-decoration: none;
        }
        .widget-links i {
            color: #4CAF50;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }
        input[type="text"],
        input[type="email"],
        textarea,
        select {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 1px solid #dadce0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: #1a73e8;
            box-shadow: 0 0 0 3px rgba(26,115,232,0.2);
        }
        button,
        .btn {
            background-color: #1a73e8;
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
            display: inline-block;
            text-align: center;
        }
        button:hover,
        .btn:hover {
            background-color: #0d47a1;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #ffb300;
        }
        .comments-section {
            margin-top: 3rem;
            border-top: 2px solid #eee;
            padding-top: 2rem;
        }
        .comment {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }
        .comment-author {
            font-weight: bold;
            color: #1a73e8;
            display: block;
            margin-bottom: 0.5rem;
        }
        .comment-date {
            font-size: 0.85rem;
            color: #666;
        }
        .site-footer {
            background-color: #202124;
            color: #e8eaed;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-logo span {
            color: #4CAF50;
        }
        .footer-heading {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: white;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #bdc1c6;
        }
        friend-link a:hover {
            color: #4CAF50;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #3c4043;
            color: #9aa0a6;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #202124;
                padding: 1rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .main-nav.active ul {
                display: flex;
            }
            .main-nav li {
                margin: 0.5rem 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .main-article,
            .sidebar {
                padding: 1.5rem;
            }
            .content-grid {
                gap: 2rem;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
        }
