* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8faff;
            color: #1e293b;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            color: #0c4a6e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #0284c7;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #fbbf24;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
            color: #fcd34d;
        }
        .my-logo span {
            color: #38bdf8;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #94a3b8;
            display: block;
            letter-spacing: 2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #fbbf24;
            color: #fbbf24;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(251, 191, 36, 0.15);
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e2e8f0;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: rgba(56, 189, 248, 0.2);
            color: #fbbf24;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #fbbf24;
            color: #0f172a;
        }
        .breadcrumb-wrap {
            background: #e9eef5;
            padding: 10px 0;
            border-bottom: 1px solid #d1d9e6;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 6px 12px;
            font-size: 0.9rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #64748b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #1e40af;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #475569;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #dbeafe 0%, #ede9fe 100%);
            padding: 50px 0 40px;
            border-bottom: 4px solid #fbbf24;
        }
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .hero-text h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero-text h1 span {
            color: #0369a1;
        }
        .hero-text p {
            font-size: 1.15rem;
            color: #1e293b;
            max-width: 540px;
            margin-bottom: 20px;
        }
        .hero-img {
            border-radius: 16px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
            transition: transform 0.3s;
        }
        .hero-img:hover {
            transform: scale(1.01);
        }
        .hero-cta {
            display: inline-block;
            background: #0369a1;
            color: #fff;
            padding: 14px 36px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background 0.2s, transform 0.2s;
            box-shadow: 0 6px 20px rgba(3, 105, 161, 0.3);
        }
        .hero-cta:hover {
            background: #0c4a6e;
            transform: translateY(-2px);
            text-decoration: none;
            color: #fff;
        }
        section {
            padding: 50px 0;
        }
        .section-title {
            font-size: 2.1rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 24px;
            border-left: 6px solid #fbbf24;
            padding-left: 18px;
        }
        .section-title i {
            color: #0369a1;
            margin-right: 10px;
        }
        .section-sub {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1e3a5f;
            margin-top: 30px;
            margin-bottom: 12px;
        }
        .section-sub i {
            margin-right: 8px;
            color: #f59e0b;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 20px;
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 20px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #e2e8f0;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
        }
        .card h3 {
            font-size: 1.3rem;
            color: #0f172a;
            margin-bottom: 8px;
        }
        .card h3 i {
            color: #f59e0b;
            margin-right: 8px;
        }
        .card p {
            color: #334155;
            font-size: 0.98rem;
        }
        .interview-block {
            background: #f1f5f9;
            border-radius: 20px;
            padding: 30px 28px;
            margin: 30px 0;
            border-left: 6px solid #fbbf24;
        }
        .interview-block .quote {
            font-style: italic;
            font-size: 1.1rem;
            color: #1e293b;
            position: relative;
            padding-left: 28px;
        }
        .interview-block .quote::before {
            content: "\201C";
            font-size: 3rem;
            position: absolute;
            left: -6px;
            top: -12px;
            color: #fbbf24;
            font-family: serif;
        }
        .interview-block .attr {
            margin-top: 12px;
            font-weight: 600;
            color: #0c4a6e;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .data-table th {
            background: #0f172a;
            color: #fbbf24;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #e2e8f0;
        }
        .data-table tr:hover td {
            background: #f8fafc;
        }
        .form-card {
            background: #fff;
            border-radius: 20px;
            padding: 30px 28px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            border: 1px solid #e2e8f0;
            margin-top: 20px;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 6px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #d1d9e6;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s;
            background: #fafcff;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #0369a1;
            box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-submit {
            background: #0369a1;
            color: #fff;
            border: none;
            padding: 14px 36px;
            border-radius: 40px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-submit:hover {
            background: #0c4a6e;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #d1d9e6;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color 0.15s;
            color: #d1d9e6;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f59e0b;
        }
        friend-link {
            display: block;
            padding: 30px 0;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            margin-top: 12px;
        }
        friend-link ul li a {
            background: #e9eef5;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s;
        }
        friend-link ul li a:hover {
            background: #fbbf24;
            color: #0f172a;
            text-decoration: none;
        }
        .site-footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 30px 0 20px;
            border-top: 4px solid #fbbf24;
        }
        .site-footer .copyright {
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 16px;
        }
        .site-footer a {
            color: #fbbf24;
        }
        .site-footer a:hover {
            color: #fcd34d;
        }
        @media (max-width: 900px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-text p {
                margin: 0 auto 20px;
            }
            .hero-text h1 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: inline-block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                margin-top: 16px;
                background: rgba(15, 23, 42, 0.95);
                padding: 16px 12px;
                border-radius: 16px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                font-size: 1rem;
            }
            .hero-text h1 {
                font-size: 1.8rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .data-table {
                font-size: 0.9rem;
            }
            .data-table th,
            .data-table td {
                padding: 10px 12px;
            }
            .form-card {
                padding: 20px 16px;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 30px 0 24px;
            }
            .hero-text h1 {
                font-size: 1.5rem;
            }
            section {
                padding: 30px 0;
            }
            .section-title {
                font-size: 1.4rem;
                padding-left: 12px;
            }
            .interview-block {
                padding: 20px 16px;
            }
        }
        .text-highlight {
            background: linear-gradient(to right, #fbbf24, #f59e0b);
            padding: 0 8px;
            border-radius: 4px;
            font-weight: 700;
            color: #0f172a;
        }
        .badge {
            display: inline-block;
            background: #0369a1;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 2px 12px;
            border-radius: 30px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .badge-gold {
            background: #fbbf24;
            color: #0f172a;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .last-update {
            font-size: 0.9rem;
            color: #64748b;
            text-align: right;
            margin-top: 8px;
            border-top: 1px dashed #d1d9e6;
            padding-top: 12px;
        }
