@font-face {
    font-family: 'Eurostile';
    src: url('Eurostile.woff2') format('woff2'),
         url('Eurostile.woff') format('woff'),
         url('Eurostile.ttf') format('truetype');
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Eurostile', sans-serif;
    background-color: #0a1628;
    color: #e8e8e8;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #0d1f3c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    flex-wrap: nowrap;
    gap: 1rem;
}

.logo-section {
    flex-shrink: 0;
    min-width: 60px;
}

.logo {
    height: 60px;
    width: auto;
    display: block;
}

/* Main Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 2rem;
}

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

.main-nav a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    color: #64b5f6;
    border-bottom-color: #64b5f6;
}

.main-nav a.active {
    color: #64b5f6;
    border-bottom-color: #64b5f6;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.social-links a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #64b5f6;
}

.social-link {
    display: inline-block;
}

.social-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.support-link {
    background-color: #1e3a5f;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.support-link:hover {
    background-color: #64b5f6;
    color: #0a1628;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0d1f3c 0%, #1a2f4a 100%);
    padding: 8rem 2rem;
    text-align: center;
    border-bottom: 2px solid #64b5f6;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #e8e8e8;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.5rem;
    color: #64b5f6;
    font-weight: 400;
}

/* Main Content */
main {
    flex: 1;
}

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

.content {
    padding: 4rem 2rem;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #64b5f6;
}

.content p {
    font-size: 1.1rem;
    color: #e8e8e8;
    line-height: 1.8;
}

/* News Section */
.news-section {
    background-color: #0d1f3c;
    padding: 4rem 2rem;
    border-top: 1px solid #1a2f4a;
}

.news-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #64b5f6;
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background-color: #0a1628;
    padding: 2rem;
    border-left: 4px solid #64b5f6;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(100, 181, 246, 0.1);
}

.news-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #e8e8e8;
}

.news-card p {
    color: #d0d0d0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-date {
    display: block;
    font-size: 0.85rem;
    color: #64b5f6;
    font-weight: 500;
}

/* Quick Links Section */
.quick-links {
    background-color: #0a1628;
    padding: 4rem 2rem;
}

.quick-links h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #64b5f6;
    text-align: center;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.link-card {
    background-color: #0d1f3c;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #1a2f4a;
    transition: all 0.3s ease;
}

.link-card:hover {
    border-color: #64b5f6;
    background-color: rgba(13, 31, 60, 0.8);
    box-shadow: 0 8px 16px rgba(100, 181, 246, 0.1);
}

.link-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #e8e8e8;
}

.link-card p {
    color: #d0d0d0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-link {
    display: inline-block;
    color: #64b5f6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid #64b5f6;
    border-radius: 4px;
}

.btn-link:hover {
    background-color: #64b5f6;
    color: #0a1628;
}

/* Footer */
footer {
    background-color: #0d1f3c;
    border-top: 1px solid #1a2f4a;
    padding: 2rem;
    text-align: center;
    margin-top: auto;
}

footer p {
    color: #a0a0a0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        padding: 0.8rem;
        gap: 0.8rem;
        justify-content: flex-start;
    }

    .logo {
        height: 50px;
    }

    .logo-section {
        flex-shrink: 0;
        min-width: auto;
    }

    .main-nav {
        flex: 1;
        min-width: 100%;
        order: 3;
        margin: 0;
        padding: 0;
    }

    .main-nav ul {
        justify-content: flex-start;
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    .main-nav a {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
        white-space: nowrap;
    }

    .social-links {
        gap: 0.6rem;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .social-links a {
        font-size: 0.8rem;
    }

    .social-icon {
        width: 22px;
        height: 22px;
    }

    .support-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .content {
        padding: 2rem 1rem;
    }

    .content h2 {
        font-size: 1.8rem;
    }

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

    .news-section {
        padding: 2rem 1rem;
    }

    .news-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-card {
        padding: 1.5rem;
    }

    .quick-links {
        padding: 2rem 1rem;
    }

    .quick-links h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .link-card {
        padding: 1.5rem;
    }

    .link-card h3 {
        font-size: 1.4rem;
    }

    .team-section {
        padding: 2rem 1rem;
    }

    .team-category h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

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

    .team-member-card {
        padding: 1.5rem;
    }

    .team-member-card h3 {
        font-size: 1.5rem;
    }

    .buses-section {
        padding: 2rem 1rem;
    }

    .buses-category h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .bus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bus-card {
        padding: 0;
    }

    .bus-card-header {
        padding: 1.5rem;
    }

    .bus-card-header h3 {
        font-size: 1.5rem;
    }

    .bus-card-body {
        padding: 1.5rem;
    }

    .bus-card-footer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .vehicle-detail {
        padding: 2rem 1rem;
    }

    .vehicle-detail h1 {
        font-size: 2rem;
    }

    .vehicle-detail h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .vehicle-specs {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .specs-table th {
        width: 40%;
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .specs-table td {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .vehicle-detail p {
        font-size: 1rem;
    }

    .vehicle-image {
        margin: 1.5rem auto;
    }

    footer {
        padding: 1.5rem;
    }

    footer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .header-container {
        padding: 0.7rem;
        gap: 0.6rem;
    }

    .logo {
        height: 45px;
    }

    .main-nav {
        flex: 1;
        min-width: 100%;
    }

    .main-nav ul {
        gap: 0.6rem;
        justify-content: flex-start;
    }

    .main-nav a {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
        white-space: nowrap;
    }

    .social-links {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .social-icon {
        width: 22px;
        height: 22px;
    }

    .support-link {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

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

    .content {
        padding: 1.5rem 1rem;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 0.95rem;
    }

    .news-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .news-card {
        padding: 1.2rem;
        border-left-width: 3px;
    }

    .news-card h3 {
        font-size: 1.2rem;
    }

    .news-card p {
        font-size: 0.95rem;
    }

    .quick-links h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .link-card {
        padding: 1.2rem;
    }

    .link-card h3 {
        font-size: 1.2rem;
    }

    .link-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .btn-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .team-category h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .team-member-card {
        padding: 1.2rem;
    }

    .team-member-card h3 {
        font-size: 1.3rem;
    }

    .team-member-card .pronouns {
        font-size: 0.9rem;
    }

    .team-member-card .role {
        font-size: 1rem;
    }

    .buses-category h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .bus-card-header {
        padding: 1.2rem;
    }

    .bus-card-header h3 {
        font-size: 1.3rem;
    }

    .bus-card-header .registration {
        font-size: 0.9rem;
    }

    .bus-card-body {
        padding: 1.2rem;
    }

    .bus-card-body .model {
        font-size: 1rem;
    }

    .bus-card-footer {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }

    .bus-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .vehicle-detail h1 {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
    }

    .vehicle-detail h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .vehicle-specs {
        padding: 1.2rem;
    }

    .specs-table th {
        width: 50%;
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    .specs-table td {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .vehicle-detail p {
        font-size: 0.95rem;
        margin: 1rem 0;
    }

    .vehicle-image {
        margin: 1.2rem auto;
    }

    .photo-credit {
        font-size: 0.85rem;
    }

    .back-link {
        margin-top: 2rem;
    }

    footer {
        padding: 1.2rem;
    }

    footer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.6rem;
        gap: 0.4rem;
        flex-direction: column;
        align-items: stretch;
    }

    .logo {
        height: 40px;
        margin: 0 auto;
        display: block;
    }

    .logo-section {
        text-align: center;
        order: 1;
    }

    .social-links {
        gap: 0.4rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        order: 2;
        align-items: center;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }

    .main-nav {
        flex: none;
        min-width: 100%;
        order: 3;
    }

    .main-nav ul {
        gap: 0.4rem;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .main-nav a {
        padding: 0.25rem 0.4rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .support-link {
        padding: 0.25rem 0.4rem;
        font-size: 0.65rem;
        white-space: nowrap;
    }

    .hero {
        padding: 2rem 1rem;
        border-bottom: 1px solid #64b5f6;
    }

    .hero-content h1 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .content {
        padding: 1.2rem;
    }

    .content h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .news-section {
        padding: 1.2rem;
    }

    .news-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .news-grid {
        gap: 1rem;
    }

    .news-card {
        padding: 1rem;
        border-left-width: 3px;
        margin: 0;
    }

    .news-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .news-card p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .news-date {
        font-size: 0.8rem;
    }

    .quick-links {
        padding: 1.2rem;
    }

    .quick-links h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .links-grid {
        gap: 1rem;
    }

    .link-card {
        padding: 1rem;
    }

    .link-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .link-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .btn-link {
        padding: 0.35rem 0.7rem;
        font-size: 0.85rem;
    }

    .team-section {
        padding: 1.2rem;
    }

    .team-category h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .team-grid {
        gap: 1rem;
    }

    .team-member-card {
        padding: 1rem;
    }

    .team-member-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }

    .team-member-card .pronouns {
        font-size: 0.85rem;
        margin: 0.3rem 0;
    }

    .team-member-card .role {
        font-size: 0.95rem;
        margin-top: 0.8rem;
    }

    .buses-section {
        padding: 1.2rem;
    }

    .buses-category h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .empty-message {
        padding: 2rem 1rem;
    }

    .empty-message p {
        font-size: 1rem;
    }

    .bus-grid {
        gap: 1rem;
    }

    .bus-card-header {
        padding: 1rem;
        background-color: rgba(100, 181, 246, 0.05);
    }

    .bus-card-header h3 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .bus-card-header .registration {
        font-size: 0.85rem;
    }

    .bus-card-body {
        padding: 1rem;
    }

    .bus-card-body .model {
        font-size: 0.95rem;
    }

    .bus-card-footer {
        padding: 0 1rem 1rem 1rem;
    }

    .bus-link {
        padding: 0.35rem 0.7rem;
        font-size: 0.85rem;
    }

    .vehicle-detail {
        padding: 1.2rem;
        min-height: auto;
    }

    .vehicle-detail h1 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .vehicle-detail h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .vehicle-specs {
        padding: 1rem;
        margin-bottom: 1.2rem;
    }

    .specs-table tr {
        display: block;
        margin-bottom: 1rem;
        border-bottom: none;
        border: 1px solid #1a2f4a;
        border-radius: 4px;
        overflow: hidden;
    }

    .specs-table th,
    .specs-table td {
        display: block;
        width: 100% !important;
        padding: 0.6rem;
        border: none;
        text-align: left;
    }

    .specs-table th {
        background-color: rgba(100, 181, 246, 0.15);
        font-weight: 600;
        border-bottom: 1px solid #1a2f4a;
    }

    .specs-table td {
        background-color: transparent;
    }

    .vehicle-detail p {
        font-size: 0.9rem;
        margin: 0.8rem 0;
        line-height: 1.6;
    }

    .vehicle-image {
        max-width: 100%;
        margin: 1rem auto;
    }

    .photo-credit {
        font-size: 0.8rem;
        margin-top: 0.3rem;
    }

    .back-link {
        margin-top: 1.5rem;
        text-align: center;
    }

    footer {
        padding: 1rem;
        margin-top: auto;
    }

    footer p {
        font-size: 0.8rem;
    }
}
.team-section {
    background-color: #0a1628;
    padding: 4rem 2rem;
}

.team-category {
    margin-bottom: 4rem;
}

.team-category h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #64b5f6;
    padding-bottom: 1rem;
    border-bottom: 2px solid #64b5f6;
}

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

.team-member-card {
    background-color: #0d1f3c;
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid #1a2f4a;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    border-color: #64b5f6;
    background-color: rgba(13, 31, 60, 0.8);
    box-shadow: 0 8px 16px rgba(100, 181, 246, 0.1);
    transform: translateY(-5px);
}

.team-member-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #e8e8e8;
}

.team-member-card .pronouns {
    font-size: 1rem;
    color: #64b5f6;
    margin: 0.5rem 0;
    font-weight: 500;
}

.team-member-card .role {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin: 1rem 0 0 0;
}

.team-member-card.no-members p {
    color: #a0a0a0;
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
}

/* Buses Section */
.buses-section {
    background-color: #0a1628;
    padding: 4rem 2rem;
}

.buses-category {
    margin-bottom: 4rem;
}

.buses-category h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #64b5f6;
    padding-bottom: 1rem;
    border-bottom: 2px solid #64b5f6;
}

.empty-message {
    background-color: #0d1f3c;
    padding: 3rem 2rem;
    border-radius: 4px;
    border: 1px solid #1a2f4a;
    text-align: center;
}

.empty-message p {
    color: #d0d0d0;
    font-size: 1.1rem;
    margin: 0;
}

.bus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bus-card {
    background-color: #0d1f3c;
    border: 1px solid #1a2f4a;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bus-card:hover {
    border-color: #64b5f6;
    background-color: rgba(13, 31, 60, 0.8);
    box-shadow: 0 8px 16px rgba(100, 181, 246, 0.1);
    transform: translateY(-5px);
}

.bus-card-header {
    padding: 2rem;
    background-color: rgba(100, 181, 246, 0.05);
    border-bottom: 1px solid #1a2f4a;
}

.bus-card-header h3 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    color: #e8e8e8;
}

.bus-card-header .registration {
    font-size: 1rem;
    color: #64b5f6;
    margin: 0;
    font-weight: 500;
}

.bus-card-body {
    padding: 2rem;
    flex-grow: 1;
}

.bus-card-body .model {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin: 0;
    font-style: italic;
}

.bus-card-body .details-text {
    color: #a0a0a0;
    font-size: 1rem;
    margin: 0;
}

.bus-card-footer {
    padding: 0 2rem 2rem 2rem;
}

.bus-link {
    display: inline-block;
    color: #64b5f6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid #64b5f6;
    border-radius: 4px;
}

.bus-link:hover {
    background-color: #64b5f6;
    color: #0a1628;
}

/* Vehicle Detail Page */
.vehicle-detail {
    background-color: #0a1628;
    padding: 4rem 2rem;
    min-height: calc(100vh - 200px);
}

.vehicle-detail h1 {
    font-size: 2.8rem;
    color: #64b5f6;
    margin-bottom: 2rem;
    text-align: center;
}

.vehicle-detail h2 {
    font-size: 2rem;
    color: #64b5f6;
    border-bottom: 2px solid #64b5f6;
    padding-bottom: 1rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.vehicle-specs {
    background-color: #0d1f3c;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #1a2f4a;
    margin-bottom: 2rem;
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #1a2f4a;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table th {
    background-color: rgba(100, 181, 246, 0.1);
    color: #64b5f6;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    width: 30%;
}

.specs-table td {
    padding: 1rem;
    color: #e8e8e8;
}

.vehicle-detail p {
    color: #e8e8e8;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 1.5rem 0;
}

.vehicle-image {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    display: block;
    border-radius: 4px;
    border: 1px solid #1a2f4a;
}

.photo-credit {
    text-align: center;
    color: #a0a0a0;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.back-link {
    margin-top: 3rem;
    text-align: center;
}