* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #1a5f7a;
            --secondary-color: #57cc99;
            --accent-color: #ff9a3c;
            --light-color: #f8f9fa;
            --dark-color: #2d3436;
            --text-color: #333;
            --gray-color: #6c757d;
            --border-radius: 12px;
            --shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #fefefe;
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-color);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-color), #0f4c75);
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a {
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: var(--accent-color);
            font-size: 2.5rem;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        nav a:hover, nav a.active {
            color: var(--secondary-color);
            border-bottom-color: var(--secondary-color);
        }
        .breadcrumb {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: var(--light-color);
        }
        .breadcrumb a {
            color: #d1e8ff;
        }
        .breadcrumb a:hover {
            color: white;
        }
        .hero {
            background: linear-gradient(rgba(26, 95, 122, 0.9), rgba(15, 76, 117, 0.9)), url('https://images.unsplash.com/photo-1610890716171-6b1bb98ffd09?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 80px 20px;
            margin-bottom: 40px;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.95;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto 0;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        .search-box input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
        }
        .search-box button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0 35px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #ff7b00;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        main {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 40px;
            overflow: hidden;
        }
        article h2, article h3, article h4 {
            color: var(--primary-color);
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        article h2 {
            font-size: 2.2rem;
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 10px;
        }
        article h3 {
            font-size: 1.8rem;
            color: var(--dark-color);
        }
        article h4 {
            font-size: 1.4rem;
            color: #444;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        article img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 30px 0;
            display: block;
        }
        .float-img-right {
            float: right;
            margin-left: 30px;
            margin-right: 0;
            max-width: 45%;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 5px solid var(--accent-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-style: italic;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        strong {
            color: var(--primary-color);
            font-weight: 700;
        }
        em {
            color: var(--gray-color);
        }
        .stat-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .stat {
            background: linear-gradient(145deg, #f0f8ff, #e1f0fa);
            border-radius: var(--border-radius);
            padding: 25px;
            text-align: center;
            box-shadow: var(--shadow);
            border-top: 5px solid var(--secondary-color);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .stat-label {
            font-size: 1.1rem;
            color: var(--gray-color);
            margin-top: 10px;
        }
        .interview {
            background-color: #f8f9fa;
            border-radius: var(--border-radius);
            padding: 30px;
            margin: 40px 0;
            border-left: 8px solid var(--primary-color);
        }
        .interview-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        .interview-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid white;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .interview-info h4 {
            margin-top: 0;
            margin-bottom: 5px;
        }
        .interview-role {
            color: var(--gray-color);
            font-style: italic;
        }
        blockquote {
            font-size: 1.2rem;
            color: var(--dark-color);
            border-left: 4px solid var(--secondary-color);
            padding-left: 25px;
            margin: 25px 0;
            font-style: italic;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 25px;
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget-title i {
            color: var(--accent-color);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2.2rem;
            color: #ffc107;
            margin: 15px 0;
            letter-spacing: 5px;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .rating-form select, .rating-form textarea {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #ddd;
            font-size: 1rem;
        }
        .rating-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: var(--secondary-color);
        }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 20px 0;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }
        .comment-author {
            font-weight: 700;
            color: var(--primary-color);
        }
        .comment-date {
            color: var(--gray-color);
            font-size: 0.9rem;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 25px;
        }
        .comment-form input, .comment-form textarea {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #ddd;
            font-size: 1rem;
        }
        .footer-links {
            background-color: #2d3436;
            color: white;
            padding: 60px 0 40px;
            margin-top: 60px;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            padding: 20px;
            transition: var(--transition);
            border-left: 4px solid transparent;
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-left-color: var(--accent-color);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ddd;
            font-size: 1.1rem;
            display: block;
        }
        .web-link a:hover {
            color: white;
        }
        footer {
            background-color: #1a1a1a;
            color: #aaa;
            text-align: center;
            padding: 30px 20px;
            font-size: 0.95rem;
        }
        .footer-links-internal {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 25px;
        }
        .footer-links-internal a {
            color: #bbb;
        }
        .footer-links-internal a:hover {
            color: white;
        }
        .copyright {
            border-top: 1px solid #333;
            padding-top: 25px;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .hero h1 {
                font-size: 2.7rem;
            }
            .float-img-right {
                float: none;
                max-width: 100%;
                margin: 30px 0;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .mobile-toggle {
                display: block;
            }
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            nav.active {
                max-height: 400px;
                margin-top: 20px;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            nav a {
                display: block;
                padding: 15px 0;
            }
            .hero {
                padding: 60px 20px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            main {
                padding: 25px;
            }
            article h2 {
                font-size: 1.9rem;
            }
            .stat-box {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 576px) {
            .search-box {
                flex-direction: column;
                border-radius: var(--border-radius);
            }
            .search-box button {
                padding: 15px;
                border-radius: 0 0 var(--border-radius) var(--border-radius);
            }
            .footer-links-internal {
                flex-direction: column;
                gap: 15px;
            }
        }
