:root {
            --primary-blue: #004A7C;
            --secondary-blue: #0A2C6E;/* #00527C */
            --accent-orange: #FDB813;
            --light-orange: #FFF5E6;
            --text-dark: #2d3748;
            --text-light: #718096;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --border-color: #e2e8f0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Header Navigation */
        header {
            background: var(--white);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .header-top {
            background: var(--primary-blue);
            color: var(--white);
            padding: 10px 0;
            font-size: 13px;
        }

        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .admin-link {
            color: var(--accent-orange);
            text-decoration: none;
            font-weight: 500;
        }

        .admin-link:hover {
            text-decoration: underline;
        }

        .header-main {
            padding: 20px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .logo-text h1 {
            font-family: 'Noto Serif SC', serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 5px;
        }

        .logo-text p {
            font-size: 8px;
            color: var(--text-light);
            font-weight: 300;
            letter-spacing: 1px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 15px;
            position: relative;
            transition: color 0.3s;
            white-space:nowrap;
        }

        nav a:hover {
            color: var(--accent-orange);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-orange);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: var(--white);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h2 {
            font-family: 'Noto Serif SC', serif;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease-out;
        }

        .hero p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 40px;
            opacity: 0.95;
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
            animation: fadeInUp 1s ease-out 0.4s backwards;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .stat-number {
            font-size: 42px;
            font-weight: 700;
            color: var(--accent-orange);
            font-family: 'Noto Serif SC', serif;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 15px;
            opacity: 0.9;
        }

        /* Section Common Styles */
        section {
            padding: 10px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-family: 'Noto Serif SC', serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent-orange);
        }

        .section-subtitle {
            color: var(--text-light);
            font-size: 16px;
            margin-top: 20px;
        }

        /* About Section */
        .about {
            background: var(--bg-light);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h3 {
            font-family: 'Noto Serif SC', serif;
            font-size: 28px;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        .about-text p {
            color: var(--text-light);
            margin-bottom: 20px;
            text-align: justify;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .feature-item {
            background: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-orange), #F5A623);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 15px;
        }

        .feature-item h4 {
            font-size: 18px;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .feature-item p {
            font-size: 14px;
            color: var(--text-light);
        }

        /* Research Areas */
        .research-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .research-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .research-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-orange), #F5A623);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .research-card:hover::before {
            transform: scaleX(1);
        }

        .research-card:hover {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-10px);
        }

        .research-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .research-card h3 {
            font-family: 'Noto Serif SC', serif;
            font-size: 20px;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        .research-card p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.6;
        }

        /* Projects Section */
        .projects {
            background: var(--white);
            padding: 80px 0;
        }

        .projects-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.8;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .project-card {
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 15px;
            padding: 35px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .project-card:hover {
            border-color: var(--accent-orange);
            box-shadow: 0 15px 50px rgba(0, 74, 124, 0.15);
            transform: translateY(-10px);
        }

        .project-card:hover::before {
            transform: scaleX(1);
        }

        .project-card.featured {
            grid-column: span 3;
            background: linear-gradient(135deg, rgba(0, 74, 124, 0.02), rgba(253, 184, 19, 0.02));
            border: 2px solid var(--accent-orange);
        }

        .project-card.featured::before {
            background: linear-gradient(90deg, var(--accent-orange), #F5A623);
            transform: scaleX(1);
        }

        .project-badge {
            display: inline-block;
            padding: 6px 15px;
            background: var(--light-orange);
            color: var(--primary-blue);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .project-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .project-title {
            font-family: 'Noto Serif SC', serif;
            font-size: 22px;
            color: var(--primary-blue);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .project-desc {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 15px;
        }

        /* Training Info Grid for Featured Card */
        .training-info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 25px;
        }

        .training-info-section {
            background: var(--bg-light);
            padding: 20px;
            border-radius: 10px;
            border-left: 3px solid var(--accent-orange);
        }

        .info-section-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .info-list li {
            padding: 8px 0;
            padding-left: 20px;
            position: relative;
            color: var(--text-dark);
            font-size: 14px;
            line-height: 1.6;
        }

        .info-list li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--accent-orange);
            font-weight: 700;
        }

        .info-list li strong {
            color: var(--primary-blue);
        }

        .training-cta {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .project-details {
            background: var(--bg-light);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .detail-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .detail-item:last-child {
            border-bottom: none;
        }

        .detail-label {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 14px;
        }

        .detail-value {
            color: var(--text-light);
            font-size: 14px;
            text-align: right;
        }

        .project-highlights {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 25px;
        }

        .highlight-tag {
            padding: 6px 12px;
            background: var(--white);
            border: 1px solid var(--accent-orange);
            color: var(--accent-orange);
            border-radius: 5px;
            font-size: 13px;
            font-weight: 500;
        }

        .project-btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--accent-orange);
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
            text-align: center;
        }

        .project-btn:hover {
            background: #F5A623;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(253, 184, 19, 0.3);
        }

        .project-btn-outline {
            background: var(--white);
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }

        .project-btn-outline:hover {
            background: var(--primary-blue);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 74, 124, 0.2);
        }

        .project-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding: 50px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 74, 124, 0.2);
        }

        .stat-item {
            text-align: center;
            color: var(--white);
        }

        .stat-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            font-family: 'Noto Serif SC', serif;
            color: var(--accent-orange);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 15px;
            opacity: 0.9;
        }

        /* Assessment Section */
        .assessment {
            background: var(--bg-light);
        }

        .assessment-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            color: var(--text-light);
        }

        .assessment-tabs {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 12px 30px;
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 8px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
            transition: all 0.3s;
        }

        .tab-btn:hover {
            border-color: var(--accent-orange);
            color: var(--accent-orange);
        }

        .tab-btn.active {
            background: var(--accent-orange);
            border-color: var(--accent-orange);
            color: var(--white);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .assessment-card {
            background: var(--white);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            max-width: 900px;
            margin: 0 auto;
        }

        .age-selector {
            margin-bottom: 30px;
        }

        .age-selector label {
            display: block;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-blue);
        }

        .age-selector select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 15px;
            cursor: pointer;
            transition: border-color 0.3s;
        }

        .age-selector select:focus {
            outline: none;
            border-color: var(--accent-orange);
        }

        .question-group {
            margin-bottom: 30px;
        }

        .question-category {
            background: var(--bg-light);
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-weight: 600;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .question-item {
            margin-bottom: 25px;
            padding: 20px;
            background: var(--bg-light);
            border-radius: 8px;
            transition: all 0.3s;
        }

        .question-item:hover {
            background: #f0f4f8;
        }

        .question-text {
            font-weight: 500;
            margin-bottom: 15px;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .question-options {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .option-label {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 10px 20px;
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 6px;
            transition: all 0.3s;
        }

        .option-label:hover {
            border-color: var(--accent-orange);
            background: var(--light-orange);
        }

        .option-label input[type="radio"] {
            cursor: pointer;
        }

        .option-label input[type="radio"]:checked + span {
            color: var(--accent-orange);
            font-weight: 600;
        }

        .assessment-actions {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            justify-content: center;
        }

        .btn-assess {
            padding: 15px 40px;
            background: var(--accent-orange);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-assess:hover {
            background: #F5A623;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(253, 184, 19, 0.3);
        }

        .btn-reset {
            padding: 15px 40px;
            background: var(--white);
            color: var(--text-dark);
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-reset:hover {
            border-color: var(--text-dark);
        }

        .result-card {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: var(--white);
            border-radius: 10px;
            padding: 40px;
            margin-top: 30px;
            display: none;
        }

        .result-card.show {
            display: block;
            animation: fadeInUp 0.5s ease-out;
        }

        .result-score {
            text-align: center;
            margin-bottom: 30px;
        }

        .score-circle {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border: 4px solid var(--accent-orange);
        }

        .score-value {
            font-size: 48px;
            font-weight: 700;
            font-family: 'Noto Serif SC', serif;
        }

        .result-level {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .result-description {
            font-size: 16px;
            opacity: 0.9;
            line-height: 1.8;
        }

        .result-dimensions {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .dimension-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 8px;
        }

        .dimension-name {
            font-weight: 600;
            margin-bottom: 10px;
        }

        .dimension-bar {
            height: 8px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            overflow: hidden;
        }

        .dimension-fill {
            height: 100%;
            background: var(--accent-orange);
            transition: width 1s ease-out;
        }

        .result-suggestions {
            margin-top: 30px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
        }

        .result-suggestions h4 {
            margin-bottom: 15px;
            font-size: 18px;
        }

        .result-suggestions ul {
            list-style: none;
        }

        .result-suggestions li {
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
        }

        .result-suggestions li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-orange);
            font-weight: 700;
        }

        .history-list {
            display: grid;
            gap: 20px;
        }

        .history-item {
            background: var(--white);
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .history-item:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transform: translateX(5px);
        }

        .history-info h4 {
            color: var(--primary-blue);
            margin-bottom: 8px;
        }

        .history-meta {
            font-size: 14px;
            color: var(--text-light);
        }

        .history-score {
            font-size: 32px;
            font-weight: 700;
            color: var(--accent-orange);
            font-family: 'Noto Serif SC', serif;
        }

        .empty-history {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-light);
        }

        .empty-history-icon {
            font-size: 64px;
            margin-bottom: 20px;
            opacity: 0.5;
        }

        /* Training Gallery Section */
        .training-gallery {
            background: var(--white);
        }

        .gallery-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 50px;
            color: var(--text-light);
            line-height: 1.8;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            aspect-ratio: 4/3;
            cursor: pointer;
            transition: all 0.3s;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(26, 58, 92, 0.95), transparent);
            color: var(--white);
            padding: 25px 20px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .gallery-desc {
            font-size: 13px;
            opacity: 0.9;
        }

        /* Image Modal */
        .image-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .image-modal.active {
            display: flex;
        }

        .modal-image {
            max-width: 90%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 10px;
            animation: zoomIn 0.3s ease-out;
        }

        .modal-close {
            position: absolute;
            top: 30px;
            right: 40px;
            color: var(--white);
            font-size: 40px;
            cursor: pointer;
            background: none;
            border: none;
            line-height: 1;
            transition: transform 0.3s;
        }

        .modal-close:hover {
            transform: scale(1.2);
        }

        .modal-caption {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--white);
            background: rgba(0, 0, 0, 0.7);
            padding: 15px 30px;
            border-radius: 8px;
            max-width: 80%;
            text-align: center;
        }

        .modal-caption h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .modal-caption p {
            font-size: 14px;
            opacity: 0.9;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.5);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* News Section */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .news-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .news-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--light-orange), var(--accent-orange));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
        }

        .news-content {
            padding: 25px;
        }

        .news-date {
            color: var(--accent-orange);
            font-size: 13px;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .news-content h3 {
            font-size: 18px;
            color: var(--primary-blue);
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .news-content p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .read-more {
            color: var(--accent-orange);
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: gap 0.3s;
        }

        .read-more:hover {
            gap: 10px;
        }

        /* Contact Section */
        .contact {
            background: var(--bg-light);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info {
            background: var(--primary-blue);
            color: var(--white);
            padding: 50px;
            border-radius: 8px;
        }

        .contact-info h3 {
            font-family: 'Noto Serif SC', serif;
            font-size: 28px;
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .contact-details h4 {
            font-size: 16px;
            margin-bottom: 5px;
            color: var(--accent-orange);
        }

        .contact-details p {
            font-size: 14px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--text-dark);
            font-size: 14px;
        }

        .form-group input,
        .form-group textarea {
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            font-family: 'Noto Sans SC', sans-serif;
            font-size: 14px;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-orange);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: var(--accent-orange);
            color: var(--white);
            padding: 15px 40px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: #F5A623;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(253, 184, 19, 0.4);
        }

        /* Footer */
        footer {
            background: var(--primary-blue);
            border-top: 3px solid #F0A500;
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-about h3 {
            font-family: 'Noto Serif SC', serif;
            font-size: 20px;
            margin-bottom: 20px;
        }

        .footer-about p {
            font-size: 14px;
            line-height: 1.8;
            opacity: 0.9;
        }

        .footer-section h4 {
            font-size: 16px;
            margin-bottom: 20px;
            color: var(--accent-orange);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 14px;
            opacity: 0.8;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--accent-orange);
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            font-size: 13px;
            opacity: 0.8;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Notification */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: var(--white);
            padding: 20px 30px;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            z-index: 10000;
            animation: slideInRight 0.3s ease-out;
            border-left: 4px solid var(--accent-orange);
        }

        @keyframes slideInRight {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .research-grid,
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .project-card.featured {
                grid-column: span 2;
            }

            .training-info-grid {
                grid-template-columns: 1fr;
            }

            .project-stats {
                grid-template-columns: repeat(2, 1fr);
                padding: 30px;
            }

            #assessment .container > div[style*="grid-template-columns"] {
                grid-template-columns: 1fr !important;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            nav ul {
                flex-wrap: wrap;
                gap: 20px;
                justify-content: center;
            }

            .hero h2 {
                font-size: 32px;
            }

            .hero-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .research-grid,
            .news-grid,
            .projects-grid {
                grid-template-columns: 1fr;
            }

            .project-card.featured {
                grid-column: span 1;
            }

            .training-info-grid {
                grid-template-columns: 1fr;
            }

            .training-cta {
                flex-direction: column;
            }

            .project-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            #assessment .container > div[style*="grid-template-columns"] {
                grid-template-columns: 1fr !important;
            }
        }