        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #2c5aa0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e63946;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffd166;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo a {
            color: inherit;
        }
        .search-form {
            display: flex;
            flex-grow: 1;
            max-width: 400px;
            margin: 0 30px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 18px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #e63946;
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: #d90429;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .main-nav {
            background-color: #14213d;
            margin-top: 1.5rem;
            border-radius: 8px;
        }
        .nav-list {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-list li {
            position: relative;
        }
        .nav-list a {
            color: #e5e5e5;
            padding: 16px 24px;
            display: block;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 3px solid transparent;
        }
        .nav-list a:hover,
        .nav-list a.active {
            background-color: rgba(255, 209, 102, 0.1);
            color: #ffd166;
            border-bottom-color: #ffd166;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #6c757d;
            background-color: #e9ecef;
            border-bottom: 1px solid #dee2e6;
        }
        .breadcrumb a {
            color: #495057;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            flex: 1;
            padding: 2.5rem 0;
        }
        article {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
            padding: 3rem;
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #1e3c72;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #ffd166;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: #2a5298;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 10px;
            border-bottom: 2px dashed #e9ecef;
        }
        h3 {
            font-size: 1.8rem;
            color: #3a6bc5;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #5a86d8;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #495057;
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-left: 5px solid #ffd166;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fffacd;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .stats-box {
            background: linear-gradient(to right, #e3f2fd, #f3e5f5);
            border-left: 5px solid #9c27b0;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .interview {
            background-color: #f1faee;
            border: 1px solid #a8dadc;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .interview p:before {
            content: "“";
            font-size: 3rem;
            color: #e63946;
            vertical-align: middle;
            line-height: 0;
            margin-right: 10px;
        }
        .quote-author {
            text-align: right;
            font-style: italic;
            color: #555;
            margin-top: 1rem;
        }
        .img-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .img-container img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 1px solid #ddd;
        }
        .img-caption {
            font-size: 0.95rem;
            color: #666;
            margin-top: 10px;
            font-style: italic;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .rating-section,
        .comments-section {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid #dee2e6;
        }
        .rating-form,
        .comment-form {
            margin-top: 1.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input[type="text"],
        input[type="email"],
        textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus,
        textarea:focus {
            border-color: #2a5298;
            outline: none;
            box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
        }
        button[type="submit"] {
            background-color: #2a5298;
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        button[type="submit"]:hover {
            background-color: #1e3c72;
        }
        .site-footer {
            background-color: #14213d;
            color: #e5e5e5;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .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: #ffd166;
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 1rem;
        }
        friend-link {
            background-color: rgba(255,255,255,0.1);
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #adb5bd;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            .my-logo {
                margin-bottom: 1rem;
            }
            .search-form {
                max-width: 100%;
                margin: 1rem 0;
                order: 3;
                width: 100%;
            }
            .mobile-toggle {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            .main-nav {
                display: none;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .nav-list {
                flex-direction: column;
            }
            .nav-list a {
                padding: 14px 20px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 1.5rem; }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
