        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #2c3e50;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 800; color: #1a5276; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .section-gap { margin-bottom: 60px; }
        .content-gap { margin-bottom: 40px; }
        header {
            background: linear-gradient(to right, #1a5276, #2e86c1);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            text-decoration: none;
            color: #f7dc6f;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
            font-family: 'Georgia', serif;
        }
        .logo a:hover { color: #fff; transition: color 0.3s; }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #e8f6f3;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #1a5276;
            padding: 20px;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        .mobile-nav.active { display: flex; }
        .mobile-nav ul { list-style: none; }
        .mobile-nav li { margin: 15px 0; }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .mobile-nav a:hover { background-color: rgba(255, 255, 255, 0.15); }
        .breadcrumb {
            background-color: #e8f4fc;
            padding: 12px 20px;
            font-size: 0.95rem;
            border-bottom: 1px solid #d1d8e0;
        }
        .breadcrumb a {
            color: #2e86c1;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .hero {
            background: linear-gradient(rgba(26, 82, 118, 0.85), rgba(46, 134, 193, 0.9)), url('https://images.unsplash.com/photo-1617951676213-70d5d2d5f3c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 80px 20px;
            margin-bottom: 40px;
            text-align: center;
            border-radius: 0 0 20px 20px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.95;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .content-section {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 40px;
        }
        h2 {
            color: #1a5276;
            border-bottom: 3px solid #f7dc6f;
            padding-bottom: 10px;
            margin-bottom: 25px;
            font-size: 2.2rem;
        }
        h3 {
            color: #2e86c1;
            margin: 25px 0 15px;
            font-size: 1.6rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight-box {
            background: linear-gradient(to right, #e8f4fc, #f0f8ff);
            border-left: 5px solid #2e86c1;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .interview {
            background-color: #f9f9f9;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px dashed #2e86c1;
        }
        .interview cite { display: block; margin-top: 15px; font-style: italic; color: #555; }
        .article-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 30px auto;
            display: block;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.01);
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 5px solid #f7dc6f;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .feature-card h3 { margin-top: 0; }
        .feature-card form { display: flex; flex-direction: column; gap: 15px; }
        .feature-card input, .feature-card textarea, .feature-card select {
            padding: 12px 15px;
            border: 1px solid #d1d8e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .feature-card input:focus, .feature-card textarea:focus, .feature-card select:focus {
            outline: none;
            border-color: #2e86c1;
            box-shadow: 0 0 0 3px rgba(46, 134, 193, 0.2);
        }
        .feature-card button {
            background: linear-gradient(to right, #1a5276, #2e86c1);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .feature-card button:hover {
            background: linear-gradient(to right, #154360, #1a5276);
            transform: scale(1.02);
        }
        .stars { display: flex; gap: 10px; justify-content: center; margin: 15px 0; }
        .stars i { color: #f7dc6f; font-size: 1.8rem; cursor: pointer; transition: color 0.2s; }
        .stars i:hover, .stars i.active { color: #f1c40f; }
        .footer-links {
            background: #1a5276;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .web-link:hover { background: rgba(255, 255, 255, 0.1); }
        .web-link a {
            color: #e8f6f3;
            text-decoration: none;
            font-size: 1rem;
            display: block;
        }
        .web-link a:hover { text-decoration: underline; color: #f7dc6f; }
        footer {
            background: #154360;
            color: #d1d8e0;
            text-align: center;
            padding: 30px 20px;
        }
        .footer-container { max-width: 1280px; margin: 0 auto; }
        .copyright { margin-top: 20px; font-size: 0.95rem; opacity: 0.8; }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.7rem; }
            h2 { font-size: 2rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
        }
        @media (max-width: 768px) {
            .hero { padding: 60px 20px; }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.1rem; }
            .content-section { padding: 25px; }
            .interactive-section { grid-template-columns: 1fr; }
            .web-links-container { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 576px) {
            .header-container { flex-direction: column; gap: 15px; }
            .logo a { font-size: 1.8rem; }
            .web-links-container { grid-template-columns: 1fr; }
            .feature-card { padding: 20px; }
        }
