@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&family=Crimson+Pro:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
    --primary-dark: #0a1628;
    --primary-blue: #1a365d;
    --accent-gold: #c9a227;
    --accent-copper: #b87333;
    --light-cream: #f5f1e8;
    --warm-gray: #a8a096;
    --text-dark: #1a1a1a;
    --text-light: #f8f6f3;
    --gradient-primary: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #2d4a6f 100%);
    --gradient-accent: linear-gradient(135deg, #c9a227 0%, #b87333 100%);
    --shadow-soft: 0 4px 20px rgba(10, 22, 40, 0.15);
    --shadow-medium: 0 8px 40px rgba(10, 22, 40, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--light-cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-medium);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-light);
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent-gold);
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.burger-menu span {
    width: 28px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-smooth);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-dark);
    z-index: 999;
    padding-top: 100px;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem;
    transition: var(--transition-smooth);
}

.mobile-nav a:hover {
    color: var(--accent-gold);
}

.hero {
    min-height: 100vh;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1564981797816-1043664bf78d?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--light-cream), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    font-family: 'Crimson Pro', serif;
    line-height: 1.8;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-gold);
    border-radius: 24px;
    z-index: -1;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-accent);
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-copper);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--warm-gray);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Crimson Pro', serif;
}

.universities-section {
    background: var(--light-cream);
    position: relative;
}

.universities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: var(--gradient-primary);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
}

.uni-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.uni-main-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.uni-main-image {
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1200&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.uni-main-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, white, transparent);
}

.uni-main-content {
    padding: 2.5rem;
}

.uni-main-content h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.uni-main-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-family: 'Crimson Pro', serif;
    font-size: 1.1rem;
}

.uni-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.uni-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-cream);
    border-radius: 50px;
    font-size: 0.9rem;
}

.uni-feature svg {
    width: 18px;
    height: 18px;
    color: var(--accent-copper);
}

.uni-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.uni-small-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: var(--transition-smooth);
}

.uni-small-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.uni-small-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
}

.uni-small-content h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.uni-small-content p {
    font-size: 0.9rem;
    color: #777;
    font-family: 'Crimson Pro', serif;
}

.research-section {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.research-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1), transparent);
    border-radius: 50%;
}

.research-section .section-header h2 {
    color: var(--text-light);
}

.research-section .section-header p {
    color: rgba(255,255,255,0.6);
}

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

.research-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.research-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    transform: scaleY(0);
    transition: var(--transition-smooth);
}

.research-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

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

.research-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.research-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-dark);
}

.research-card h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.research-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    font-family: 'Crimson Pro', serif;
}

.research-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.research-link:hover {
    gap: 1rem;
}

.startups-section {
    background: linear-gradient(180deg, var(--light-cream) 0%, #e8e4dc 100%);
}

.startups-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.startups-info h3 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.startups-info p {
    color: #666;
    font-family: 'Crimson Pro', serif;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.9;
}

.startup-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.startup-stat {
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.startup-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-copper);
}

.startup-stat-label {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.25rem;
}

.startups-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.startup-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border-left: 4px solid transparent;
}

.startup-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--accent-gold);
}

.startup-card h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.startup-card p {
    font-size: 0.95rem;
    color: #777;
    font-family: 'Crimson Pro', serif;
    margin-bottom: 1rem;
}

.startup-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--light-cream);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--accent-copper);
    font-weight: 600;
}

.education-section {
    background: white;
    position: relative;
}

.education-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.education-text h3 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.education-text > p {
    color: #666;
    font-family: 'Crimson Pro', serif;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.9;
}

.education-list {
    list-style: none;
}

.education-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.education-list li:last-child {
    border-bottom: none;
}

.education-list-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.education-list-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.education-list h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.education-list p {
    font-size: 0.9rem;
    color: #888;
}

.education-image {
    position: relative;
}

.education-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.education-image-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    color: white;
}

.education-image-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.education-image-overlay p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.contact-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08), transparent);
    border-radius: 50%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-info h3 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: rgba(255,255,255,0.7);
    font-family: 'Crimson Pro', serif;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.contact-item-text {
    color: var(--text-light);
}

.contact-item-text span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.25rem;
}

.contact-item-text a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-item-text a:hover {
    color: var(--accent-gold);
}

.contact-form-wrapper {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: var(--text-light);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255,255,255,0.12);
}

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

footer {
    background: #050a12;
    padding: 4rem 0 2rem;
}

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

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-family: 'Crimson Pro', serif;
    margin-top: 1rem;
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: var(--transition-smooth);
}

.footer-bottom a:hover {
    color: var(--accent-gold);
}

.external-links {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
}

.external-links h5 {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.external-links a {
    display: inline-block;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.external-links a:hover {
    color: var(--accent-gold);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    flex: 1;
}

.cookie-text a {
    color: var(--accent-gold);
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.cookie-accept {
    background: var(--gradient-accent);
    color: var(--primary-dark);
}

.cookie-accept:hover {
    transform: scale(1.05);
}

.cookie-reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.update-date {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin-top: 1rem;
    font-family: 'Source Sans 3', sans-serif;
}

.page-header {
    padding: 180px 0 80px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Crimson Pro', serif;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb span {
    color: rgba(255,255,255,0.4);
}

.page-content {
    padding: 5rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
}

.main-content h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin: 2rem 0 1rem;
}

.main-content h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin: 1.5rem 0 1rem;
}

.main-content p {
    color: #555;
    margin-bottom: 1.5rem;
    font-family: 'Crimson Pro', serif;
    font-size: 1.1rem;
    line-height: 1.9;
}

.main-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.main-content li {
    color: #555;
    margin-bottom: 0.5rem;
    font-family: 'Crimson Pro', serif;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.sidebar-widget h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-gold);
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget li {
    margin-bottom: 0.5rem;
}

.sidebar-widget a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.sidebar-widget a:hover {
    color: var(--accent-copper);
    padding-left: 0.5rem;
}

.info-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    border-radius: 16px;
    padding: 2rem;
    color: white;
}

.info-box h4 {
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.info-box p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    margin: 2rem 0;
}

.quote-box {
    background: var(--light-cream);
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}

.quote-box p {
    font-style: italic;
    color: var(--primary-dark);
    margin: 0;
}

.quote-box cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--accent-copper);
    font-style: normal;
}

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .uni-grid {
        grid-template-columns: 1fr;
    }
    
    .research-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .startups-showcase {
        grid-template-columns: 1fr;
    }
    
    .education-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-image::before {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .startups-cards {
        grid-template-columns: 1fr;
    }
    
    .startup-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .uni-main-content {
        padding: 1.5rem;
    }
    
    .uni-features {
        flex-direction: column;
    }
    
    .uni-feature {
        justify-content: center;
    }
}

.articles-preview {
    background: white;
    padding: 6rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.article-card {
    background: var(--light-cream);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.article-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.article-content p {
    color: #666;
    font-family: 'Crimson Pro', serif;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-copper);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.article-link:hover {
    gap: 1rem;
    color: var(--primary-dark);
}

.highlights-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-dark);
}

.highlight-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.highlight-card p {
    color: rgba(255,255,255,0.7);
    font-family: 'Crimson Pro', serif;
}

.cta-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, #e8e4dc 100%);
    padding: 5rem 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.cta-content p {
    color: #666;
    font-family: 'Crimson Pro', serif;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.cta-buttons .btn-secondary:hover {
    background: var(--primary-dark);
    color: var(--text-light);
}

.related-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.related-articles h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.related-card {
    display: block;
    padding: 1.25rem;
    background: var(--light-cream);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border-left: 3px solid var(--accent-gold);
}

.related-card:hover {
    background: #e8e4dc;
    transform: translateX(5px);
}

.related-card span {
    color: var(--primary-dark);
    font-weight: 600;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

.about-main {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.about-main h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 2rem 0 1rem;
}

.about-main h2:first-of-type {
    margin-top: 0;
}

.about-main p {
    color: #555;
    font-family: 'Crimson Pro', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-main ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.about-main li {
    color: #555;
    font-family: 'Crimson Pro', serif;
    margin-bottom: 0.5rem;
}

.about-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.contact-cta {
    margin-top: 2rem;
    text-align: center;
}

.legal-content h2 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin: 2.5rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    color: #555;
    font-family: 'Crimson Pro', serif;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content li {
    color: #555;
    font-family: 'Crimson Pro', serif;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--accent-copper);
}

nav a.active {
    color: var(--accent-gold);
}

nav a.active::after {
    width: 100%;
}

@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-sidebar {
        position: static;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}
