 /* RESET & VARIABLES */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #ff6b6b;
            --secondary: #4ecdc4;
            --dark: #2c3e50;
            --light: #f8f9fa;
            --gradient: linear-gradient(45deg, var(--primary), var(--secondary));
        }
        
        /* BASE */
        html { scroll-behavior: smooth; }
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            padding-top: 80px;
        }
        
        /* HEADER */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .logo img { height: 60px; }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s;
            position: relative;
            padding-bottom: 8px;
        }
        .nav-links a:hover { color: var(--primary); }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--gradient);
            transition: width 0.3s;
        }
        .nav-links a:hover::after { width: 100%; }
        
        /* HERO */
        .hero {
            height: 100vh;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: -80px;
            background: var(--hero-image) center/cover;
        }
        .hero-content {
            max-width: 900px;
            padding: 2rem;
            animation: slideInUp 1s;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 2px rgba(0,0,0,0.7);
        }
        .hero .citation {
            font-size: 1.5rem;
            font-style: italic;
            text-shadow: 2px 2px 2px rgba(0,0,0,0.7);
        }
        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* SECTIONS */
        section { padding: 6rem 2rem; }
        .light-bg { background: var(--light); }
        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 4rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* GRIDS */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, 250px);
            justify-content: center;
            gap: 1.5rem;
        }
        .gallery-grid img, .gallery-grid video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .gallery-grid img:hover, .gallery-grid video:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        .card img {
            max-width: 100%;
            object-fit: contain;
            border-radius: 15px;
            margin-bottom: 1.5rem;
        }
		.card video {
            max-width: 100%;
            object-fit: contain;
			height: auto;
            border-radius: 15px;
            margin-bottom: 1.5rem;
        }
        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        .card p { font-size: 0.9rem; flex-grow: 1; }
        
		.card table {
			border-collapse: collapse;
			width: 100%;
			border: 1px solid #ccc;
			font-size: 0.9rem;

		}

		.card table th,
		.card table td {
			border: 1px solid #ccc;
			padding: 1px;
			text-align: center;
			vertical-align: middle;
		}

		.card table th {
			font-weight: bold;
			background-color: #f5f5f5;
		}

		.card table td {
			font-weight: normal;
		}
		.card table h4 {
			font-size: 1.5rem;
		}
		.card table h6 {
			font-size: 0.4rem;
		}
		
		.card a {
		word-break: break-all;
		overflow-wrap: break-word;
		}

		.card * {
		max-width: 100%;
		box-sizing: border-box;
        }
		
		/* FOOTER */
        footer {
            background: #0033CC;
            color: white;
            padding: 1rem;
        }
        .footer-content {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.5rem;
        }
        .social-links {
            display: flex;
            gap: 1rem;
        }
        .social-links img { width: 32px; height: 32px; }
        
        /* MOBILE */
        @media (max-width: 768px) {
            body { padding-top: 115px; }
            nav { flex-direction: column; gap: 0.5rem; }
            .logo img { height: 50px; }
            .nav-links { gap: 0.5rem; width: 100%; }
            .nav-links a { font-size: 1rem; }
            .hero h1 { font-size: 2rem; }
            .hero .citation { font-size: 1rem; }
            section { padding: 4rem 1rem; }
            .section-title { font-size: 2.2rem; margin-bottom: 3rem; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .cards-grid { grid-template-columns: 1fr; }
            .footer-content { flex-direction: column; text-align: center; }
        }