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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 0;
}

/* Header Styles */
header {
    background: #9d2235;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: opacity 0.3s;
}

.site-title:hover {
    opacity: 0.9;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    padding: 0.5rem 0;
    display: block;
}

nav a:hover,
nav a.active {
    opacity: 0.8;
}

.submenu {
    display: none;
    position: absolute;
    background: #841f31;
    padding: 1rem;
    margin-top: 0.5rem;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

nav li {
    position: relative;
}

nav li.has-submenu:hover .submenu {
    display: block;
}

.submenu li {
    margin: 0.5rem 0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 400px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('images/campus.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #9d2235;
}

h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #9d2235;
}

h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: #333;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.image-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.image-gallery img:hover {
    transform: scale(1.02);
}

/* Contact Info */
.contact-info {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.contact-info h2 {
    color: #9d2235;
    margin-bottom: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a {
    color: #9d2235;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Campus Map */
.campus-map {
    margin: 2rem 0;
}

.campus-map img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h3 {
    margin: 0.5rem 0;
    color: #9d2235;
}

.team-member p {
    color: #666;
    font-size: 0.9rem;
}

/* News/Publications List */
.news-list,
.publication-list {
    list-style: none;
}

.news-item,
.publication-item {
    padding: 1.5rem;
    margin: 1rem 0;
    background: #f9f9f9;
    border-left: 4px solid #9d2235;
    border-radius: 4px;
}

.news-item h3,
.publication-item h3 {
    margin-top: 0;
}

.news-date,
.publication-year {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Research Projects */
.research-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.research-project {
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.research-project img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* People Page - Grid Layout */
.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.person-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.person-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.person-card img {
    width: 100%;
    max-width: 200px;
    height: 250px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #9d2235;
}

.person-card h3 {
    margin: 0.5rem 0;
    color: #9d2235;
    font-size: 1.2rem;
}

.person-role {
    font-weight: bold;
    color: #666;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.person-detail {
    font-size: 0.85rem;
    color: #555;
    margin: 0.3rem 0;
    line-height: 1.4;
}

.person-links {
    margin: 0.8rem 0;
    font-size: 0.9rem;
}

.person-links a {
    color: #9d2235;
    text-decoration: none;
}

.person-links a:hover {
    text-decoration: underline;
}

.person-contact {
    margin-top: 0.8rem;
}

.person-contact a {
    color: #9d2235;
    text-decoration: none;
    font-size: 0.9rem;
}

.person-contact a:hover {
    text-decoration: underline;
}

/* Alumni Table */
.alumni-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.alumni-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.alumni-table th,
.alumni-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.alumni-table th {
    background: #9d2235;
    color: white;
    font-weight: 600;
}

.alumni-table tbody tr:hover {
    background: #f5f5f5;
}

/* News Page Styles */
.news-year-section {
    margin: 3rem 0;
}

.year-header {
    font-size: 2.2rem;
    color: #9d2235;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #9d2235;
    margin-bottom: 2rem;
}

.news-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.news-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateX(5px);
}

.news-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    align-self: flex-start;
    min-width: 100px;
    text-align: center;
}

.news-badge.journal {
    background: #e3f2fd;
    color: #1565c0;
    border: 2px solid #1565c0;
}

.news-badge.presentation {
    background: #f3e5f5;
    color: #6a1b9a;
    border: 2px solid #6a1b9a;
}

.news-badge.proceeding {
    background: #f3e5f5;
    color: #6a1b9a;
    border: 2px solid #6a1b9a;
}

.news-badge.funding {
    background: #e8f5e9;
    color: #2e7d32;
    border: 2px solid #2e7d32;
}

.news-badge.award {
    background: #fff3e0;
    color: #e65100;
    border: 2px solid #e65100;
}

.news-badge.lab {
    background: #fce4ec;
    color: #c2185b;
    border: 2px solid #c2185b;
}

.news-badge.outreach {
    background: #e0f2f1;
    color: #00695c;
    border: 2px solid #00695c;
}

.news-badge.service {
    background: #f1f8e9;
    color: #558b2f;
    border: 2px solid #558b2f;
}

.news-content {
    flex: 1;
}

.news-date {
    font-weight: 600;
    color: #9d2235;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.news-content p {
    line-height: 1.7;
    color: #333;
}

.news-content a {
    color: #1565c0;
    text-decoration: none;
    transition: color 0.3s;
}

.news-content a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

.news-content em {
    font-style: italic;
    color: #555;
}

/* Publications Page Styles */
.publication-header {
    background: linear-gradient(135deg, #9d2235 0%, #c93550 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.scholar-link {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.scholar-link a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.scholar-link a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.publication-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.pub-section {
    margin: 3rem 0;
}

.pub-category {
    font-size: 2rem;
    color: #9d2235;
    padding: 1rem 0;
    border-bottom: 3px solid #9d2235;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.year-group {
    margin: 2.5rem 0;
}

.pub-year {
    font-size: 1.8rem;
    color: #9d2235;
    background: #f5f5f5;
    padding: 0.75rem 1.5rem;
    border-left: 5px solid #9d2235;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.pub-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #e0e0e0;
}

.pub-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateX(5px);
}

.pub-item.journal {
    border-left-color: #1565c0;
}

.pub-item.patent {
    border-left-color: #e65100;
}

.pub-number {
    font-weight: bold;
    color: #9d2235;
    min-width: 50px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pub-content {
    flex: 1;
}

.pub-authors {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.pub-authors strong {
    color: #9d2235;
    font-weight: 600;
}

.pub-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    margin: 0.5rem 0;
    line-height: 1.5;
}

.pub-venue {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin: 0.5rem 0;
}

.pub-venue em {
    font-style: italic;
}

.pub-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: #1565c0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    padding: 0.4rem 1rem;
    background: #e3f2fd;
    border-radius: 20px;
}

.pub-link:hover {
    background: #1565c0;
    color: white;
}

.earlier-note {
    padding: 1.5rem;
    background: #f5f5f5;
    border-left: 4px solid #9d2235;
    border-radius: 4px;
    font-size: 1rem;
    line-height: 1.6;
}

.earlier-note a {
    color: #1565c0;
    text-decoration: none;
    font-weight: 600;
}

.earlier-note a:hover {
    text-decoration: underline;
}

/* Research Page Styles */
.research-vision {
    background: linear-gradient(135deg, #9d2235 0%, #c93550 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(157, 34, 53, 0.2);
}

.research-vision h2 {
    color: white;
    margin-top: 0;
    font-size: 2rem;
}

.vision-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-top: 1rem;
}

/* Funding Section */
.funding-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 12px;
}

.funding-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.funding-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
    padding: 1rem;
}

.funding-logos img {
    max-width: 180px;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s;
}

.funding-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Projects Section */
.projects-section {
    margin: 4rem 0;
}

.section-title {
    font-size: 2.2rem;
    color: #9d2235;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #9d2235;
    margin-bottom: 2rem;
}

/* Project Cards */
.project-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 6px solid #9d2235;
}

.project-card.completed {
    border-left-color: #666;
    opacity: 0.95;
}

.project-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.project-number {
    background: #9d2235;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.project-card.completed .project-number {
    background: #666;
}

.project-header h3 {
    flex: 1;
    margin: 0;
    color: #333;
    font-size: 1.4rem;
    line-height: 1.4;
}

.project-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.active-badge {
    background: #e8f5e9;
    color: #2e7d32;
    border: 2px solid #2e7d32;
}

.completed-badge {
    background: #f5f5f5;
    color: #666;
    border: 2px solid #999;
}

.project-funding {
    color: #666;
    font-style: italic;
    margin: 0.5rem 0 1.5rem;
    font-size: 0.95rem;
}

.project-content {
    display: block;
    margin-top: 1.5rem;
}

.project-text h4 {
    color: #9d2235;
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.project-text p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Project Keywords */
.project-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.keyword {
    background: #e3f2fd;
    color: #1565c0;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #1565c0;
}

/* Project Media */
.project-media {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.media-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-height: 300px;
}

.media-item img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.media-item:hover img {
    transform: scale(1.05);
}

.media-item video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.media-item.video {
    background: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #9d2235;
        padding: 1rem;
        gap: 0;
    }

    nav ul.active {
        display: flex;
    }

    nav li {
        margin: 0.5rem 0;
    }

    .submenu {
        position: static;
        display: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
        background: transparent;
        box-shadow: none;
    }

    nav li.has-submenu.open .submenu {
        display: block;
    }

    .hero {
        height: 300px;
    }

    h1 {
        font-size: 2rem;
    }

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

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

    /* People page responsive */
    .people-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .person-card img {
        max-width: 180px;
        height: 220px;
    }

    .alumni-table {
        font-size: 0.85rem;
    }

    .alumni-table th,
    .alumni-table td {
        padding: 0.5rem;
    }

    /* News page responsive */
    .news-card {
        flex-direction: column;
        gap: 1rem;
    }

    .news-badge {
        min-width: auto;
        align-self: flex-start;
    }

    .year-header {
        font-size: 1.8rem;
    }

    /* Publications page responsive */
    .pub-item {
        flex-direction: column;
        gap: 1rem;
    }

    .pub-number {
        min-width: auto;
    }

    .pub-year {
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
    }

    .pub-category {
        font-size: 1.7rem;
    }

    .publication-header {
        padding: 1.5rem;
    }

    .scholar-link {
        font-size: 1rem;
    }

    /* Research page responsive */
    .research-vision {
        padding: 2rem;
    }

    .research-vision h2 {
        font-size: 1.7rem;
    }

    .vision-text {
        font-size: 1rem;
    }

    .funding-logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }

    .funding-logos img {
        max-width: 120px;
        max-height: 80px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .project-card {
        padding: 1.5rem;
    }

    .project-header h3 {
        font-size: 1.2rem;
    }

    .project-media {
        grid-template-columns: 1fr;
    }

    .media-item {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .people-grid {
        grid-template-columns: 1fr;
    }

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

    .project-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .media-item {
        max-height: 200px;
    }
}

@media (max-width: 1024px) {
    .project-media {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Outreach Page Styles - ADD THESE TO YOUR styles.css */

.outreach-section {
    margin: 2rem 0;
}

.outreach-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 6px solid #9d2235;
}

.outreach-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.outreach-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.outreach-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.outreach-header h2 {
    margin: 0;
    color: #9d2235;
    font-size: 1.8rem;
    line-height: 1.3;
}

.outreach-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.badge-tag {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-tag.event {
    background: #e8f5e9;
    color: #2e7d32;
    border: 2px solid #2e7d32;
}

.badge-tag.collaboration {
    background: #e3f2fd;
    color: #1565c0;
    border: 2px solid #1565c0;
}

.badge-tag.club {
    background: #f3e5f5;
    color: #6a1b9a;
    border: 2px solid #6a1b9a;
}

.badge-tag.recruiting {
    background: #fff3e0;
    color: #e65100;
    border: 2px solid #e65100;
}

.badge-tag.education {
    background: #fce4ec;
    color: #c2185b;
    border: 2px solid #c2185b;
}

.badge-tag.summer {
    background: #fff9c4;
    color: #f57f17;
    border: 2px solid #f57f17;
}

.badge-tag.k12 {
    background: #e0f2f1;
    color: #00695c;
    border: 2px solid #00695c;
}

.badge-tag.demo {
    background: #f1f8e9;
    color: #558b2f;
    border: 2px solid #558b2f;
}

.outreach-content {
    margin: 1.5rem 0;
}

.outreach-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.outreach-description a {
    color: #1565c0;
    text-decoration: none;
    font-weight: 500;
}

.outreach-description a:hover {
    text-decoration: underline;
}

.outreach-partners {
    background: #f5f5f5;
    padding: 1rem;
    border-left: 4px solid #9d2235;
    border-radius: 4px;
    margin: 1rem 0;
}

.outreach-partners strong {
    color: #9d2235;
}

.outreach-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #9d2235;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.outreach-link:hover {
    background: #7a1a2a;
    transform: translateX(5px);
}

.contact-persons {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.contact-persons strong {
    color: #9d2235;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-persons ul {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0;
}

.contact-persons li {
    padding: 0.5rem 0;
}

.contact-persons a {
    color: #1565c0;
    text-decoration: none;
}

.contact-persons a:hover {
    text-decoration: underline;
}

.outreach-highlights {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.outreach-highlights strong {
    color: #9d2235;
    display: block;
    margin-bottom: 0.75rem;
}

.outreach-highlights ul {
    margin: 0.5rem 0 0 1.5rem;
}

.outreach-highlights li {
    padding: 0.3rem 0;
    color: #555;
}

.outreach-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.outreach-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.outreach-gallery img:hover {
    transform: scale(1.05);
}

/* Responsive Design for Outreach Page */
@media (max-width: 768px) {
    .outreach-card {
        padding: 1.5rem;
    }

    .outreach-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .outreach-icon {
        font-size: 2.5rem;
    }

    .outreach-header h2 {
        font-size: 1.5rem;
    }

    .outreach-description {
        font-size: 1rem;
    }

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

    .outreach-gallery img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .outreach-badge {
        flex-direction: column;
    }

    .badge-tag {
        text-align: center;
    }
}

* Positions Page Styles - ADD THESE TO YOUR styles.css */

.positions-banner {
    background: linear-gradient(135deg, #9d2235 0%, #c93550 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(157, 34, 53, 0.2);
}

.banner-content h2 {
    color: white;
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
}

.banner-content p {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.95;
}

.position-details {
    margin: 3rem 0;
}

.position-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left: 6px solid #9d2235;
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #f5f5f5;
    flex-wrap: wrap;
    gap: 1rem;
}

.position-header h2 {
    margin: 0;
    color: #9d2235;
    font-size: 2rem;
}

.position-status {
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.position-status.available {
    background: #e8f5e9;
    color: #2e7d32;
    border: 2px solid #2e7d32;
}

.position-info {
    margin: 2rem 0;
}

.info-section {
    margin: 2.5rem 0;
}

.info-section h3 {
    color: #9d2235;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-section p {
    line-height: 1.8;
    color: #555;
    margin: 0.5rem 0;
}

.info-section a {
    color: #1565c0;
    text-decoration: none;
    font-weight: 500;
}

.info-section a:hover {
    text-decoration: underline;
}

.research-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    margin: 1rem 0;
    list-style: none;
    padding: 0;
}

.research-topics li {
    background: #e3f2fd;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: #1565c0;
    border-left: 4px solid #1565c0;
    font-weight: 500;
}

.candidate-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}

.requirement-box {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.requirement-box h4 {
    color: #9d2235;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.requirement-box p {
    margin: 0.5rem 0;
    color: #555;
}

.requirement-box ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.requirement-box li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: #555;
}

.requirement-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

.highlight-section {
    background: #fff3e0;
    padding: 2rem;
    border-radius: 8px;
    border-left: 6px solid #e65100;
}

.funding-info {
    margin-top: 1rem;
}

.funding-info p {
    margin: 1rem 0;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
}

.funding-info strong {
    color: #9d2235;
}

.funding-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #e65100 !important;
    font-weight: 600 !important;
}

.requirements-section {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
}

.requirement-notice {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #9d2235;
}

.requirement-notice p {
    margin: 0;
}

.requirement-notice strong {
    color: #9d2235;
}

.apply-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.apply-section h3 {
    color: #9d2235;
    margin-top: 0;
    margin-bottom: 1rem;
}

.apply-section p {
    font-size: 1.1rem;
    margin: 1rem 0;
}

.apply-section a {
    color: #1565c0;
    text-decoration: none;
    font-weight: 600;
}

.apply-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 3rem;
    background: #9d2235;
    color: white !important;
    text-decoration: none !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(157, 34, 53, 0.3);
}

.apply-button:hover {
    background: #7a1a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(157, 34, 53, 0.4);
}

.last-updated {
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    border-top: 2px solid #f5f5f5;
}

.last-updated p {
    color: #999;
    font-style: italic;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design for Positions Page */
@media (max-width: 768px) {
    .positions-banner {
        padding: 2rem 1.5rem;
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .position-card {
        padding: 1.5rem;
    }

    .position-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .position-header h2 {
        font-size: 1.6rem;
    }

    .research-topics {
        grid-template-columns: 1fr;
    }

    .candidate-requirements {
        grid-template-columns: 1fr;
    }

    .apply-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .info-section h3 {
        font-size: 1.2rem;
    }
}