* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

header {
    color: white;
    align-items: center;
    /* background-color: rgb(15, 20, 36); */
    background-color: #ffffff;
    min-height: 80px;
    width: 100vw;
    z-index: 9999;
    display: flex;
}

.desktop-menu {
    list-style-type: none;
    margin: 0;
    padding-inline: 32px;
    display: flex;
    justify-content: flex-start;
    position: relative;
}

.desktop-menu li {
    margin: 0 2.5rem;
    position: relative;
}

.desktop-menu a {
    color: rgb(15, 20, 36);
    text-decoration: none;
    font-size: 12px;
    height: 100%;
    display: flex;
    align-items: center;
}

.Logo {
    height: 64px;
    padding-block: 12px;
}

.mobile-header {
    display: none;
    width: 100vw;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: white;
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding-inline: 32px;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.menu-overlay, .mobile-menu-close-button {
    display: none;
}

body.menu-open {
    overflow: hidden;
    height: 100vh;
}

@media (max-width: 950px) {
    .desktop-menu {
        display: none;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 16px;
        background-color: white;
        position: relative;
        z-index: 10000;
    }

    .mobile-header .Logo {
        height: 48px;
        padding: 0;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: white;
        z-index: 9999;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .mobile-menu-overlay.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 10000;
    }

    body.mobile-menu-open {
        overflow: hidden;
        height: 100vh;
    }

    .mobile-menu {
        flex-direction: column;
        background-color: white;
        width: 100%;
        align-items: center;
        gap: 2rem;
        padding: 0;
        margin: 0;
        display: none;
    }

    .mobile-menu-overlay.active .mobile-menu {
        display: flex;
    }

    .mobile-menu li {
        margin: 0 2.5rem;
        position: relative;
    }

    .mobile-menu a {
        color: rgb(15, 20, 36);
        text-decoration: none;
        font-size: 1.5rem;
        margin: 0.5rem;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .submenu {
        display: none;
        top: 100%;
        position: absolute;
        right: 0;
        margin: 0;
        padding: 0;
        width: auto;
        list-style-type: none;
        background-color: rgba(58, 68, 95, 0.8);
        white-space: nowrap;
    }

    .submenu li {
        display: flex;
        justify-content: flex-end;
        padding-left: 24px;
    }

    .menu-item:hover .submenu {
        display: block;
    }

    .Logo {
        height: 128px;
        padding-block: 12px;
    }
    
    .hamburger, .mobile-menu-close-button {
        position: absolute;
        top: 16px;
        right: 16px;
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        z-index: 10000;
    }

    .hamburger {
        display: block;
    }

    .hamburger.hide {
        display: none;
    }

    .mobile-menu-close-button {
        display: none;
        position: absolute;
        top: 16px;
        right: 16px;
        font-size: 32px;
        background: none;
        border: none;
        cursor: pointer;
        color: black;
    }

    .mobile-menu-overlay.active .mobile-menu-close-button {
        display: block;
    }
}

#join-committee {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#join-committee:target {
    display: flex;
}

.alert-box {
    background-color: #ffffff;
    color: black;
    max-width: 30%;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: left;
    z-index: 1001;
    white-space: normal;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

.alert-box p {
    max-width: 100%;
    font-size: 16px;
}

.alert-box div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 80%;
    gap: 32px;
    margin-bottom: 16px;
}

.close-button {
    color: black;
    background-color: black;
    border: 2px solid black;
    border-radius: 8px;
    transition: all 0.3s ease;
    justify-content: center;
    width: auto;
    padding: 8px 16px;
    font-size: 16px;
}

.close-button:hover {
    background-color: white;
    color: black;
}

footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100vw;
    height: auto;
    bottom: 0;
    background-color: #0f1320;
    color: white;
    text-align: center;
    margin-top: 48px;
    padding: 10px 50px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 0.5em;
}

.UniMelb-Logo {
    height: 100px;
}

.footer-text p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
    text-align: left;
}

.footer-right {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: flex-end;
    margin-right: 0.5em;
}

.footer-right .social-icon i,
.footer-right .social-icon img {
    font-size: 40px;
    height: 40px;
}

.social-icon {
    transition: transform 0.3s ease;
}

.social-icon i {
    font-size: 5vh;
    transition: transform 0.3s ease;
}

.social-icon img {
    height: 5vh;
    transition: transform 0.3s ease;
}

.fab.fa-instagram {
    background: linear-gradient(45deg, #F58529, #E4405F, #D93F8D, #8a3ab9);
    -webkit-background-clip: text;
    color: transparent;
}

.fab.fa-facebook {
    color: #0165E1;
}

.fab.fa-linkedin {
    color: #0A66C2;
}

.social-icon:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 20px;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
    }


    .footer-text p {
        text-align: center;
    }

    .footer-right {
        justify-content: center;
        flex-wrap: wrap;
        margin-right: 0;
        gap: 16px;
    }

    .UniMelb-Logo {
        height: 80px;
    }

    .social-icon i, .social-icon img {
        font-size: 32px;
        height: 32px;
    }
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100vw;
}

.index-intro {
    color: white;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 43.9vw;
}

.index-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    flex-grow: 1;
    background-color: rgba(0, 0, 0, 0.8);
}

.index-text h1 {
    font-size: 4rem;
}

.index-text button {
    border: 2px solid black;
    background-color: white;
    border-radius: 64px;
    padding: 15px 30px;
    color: black;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.index-text button:hover {
    background-color: lightgray;
}

.index-about {
    color: #293453;
    padding: 50px 20px;
    text-align: center;
    margin-bottom: 64px;
}

.index-about h1 {
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.index-about p {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.66);
    margin-bottom: 48px;
    margin-top: 10px;

}

.milestones {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 20px auto;
    max-width: 65%;
    margin-bottom: 48px;
    gap: 65px;
    justify-content: center;
}

.item {
    text-align: center;
    gap: 8px;
}

.milestones figure {
    font-size: 5rem;
    margin: 0;
    color: #71819a;
    margin-bottom: 5px;
    font-weight: bold;
}

.milestones p {
    font-size: 1rem;
    margin: 0;
    color: #666;
    font-weight: normal;
}

.white-black-pill {
    border: 3px solid #293453;
    background-color: #293453;
    padding: 10px 20px;
    color: #eff8ff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 32px;
}

.white-black-pill:hover {
    background-color: #71819a;
    color: white;
}

.index-publications {
    width: 100%;
    background-color: #e1e8ed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 48px;
}

.index-publications div {
    align-items: center;
    justify-content: center;
    margin: 48px;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin: 20px auto;
    max-width: 65%;
    margin-bottom: 48px;
}

.index-publications-examples {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.index-publications-examples img {
    width: 150px;
}

.index-publications-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.index-events {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 80%;
    margin-bottom: 48px;
}

.index-events div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 48px;
}

.index-events-examples {
    display: flex;
    max-width: 400px;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0;
    color: #e1e8ed;
}

.index-events-examples>div {
    display: flex;
    animation: slideAnimation 9s infinite;
    margin: 0;
    padding: 0;
}

.index-events-examples div {
    flex: 1 0 100%;
}

.index-events-examples img {
    width: 100%;
    display: block;
}

@keyframes slideAnimation {
    0% {
        transform: translateX(100%);
    }

    33.33% {
        transform: translateX(0%);
    }

    66.33% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.index-events-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-intro {
    color: white;
    display: flex;
    flex-direction: column;
    /* background-image: url("https://lshtgdpdskhqqxdcwpjo.supabase.co/storage/v1/object/public/photos//SiiF-Backdrop");
    background-position: center;
    background-size: cover; */
    width: 100vw;
    height: 43.9vw;
    margin-bottom: 5%;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    color: white;
    background-color: rgba(0, 0, 0, 0.8)
}

.about-text h1 {
    font-size: 6rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    margin-bottom: 2%;
}

.about-text p {
    font-size: 1.5rem;
    margin-bottom: 2%;
    margin-bottom: 5%;
}

.about-text button {
    border: 2px solid white;
    background-color: transparent;
    padding: 15px 30px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-text button:hover {
    background-color: white;
    color: black;
    opacity: 1;
    border: 2px solid black;
    padding: 16px 32px;
    font-size: 25.5px;
}

.body-text {
    display: flex;
    flex-direction: column;
    width: 60%;
    margin-bottom: 5%;
}

.body-text h1 {
    color: #293453;
    text-align: center;
    font-size: 70px;
}

.about h2 {
    color: grey;
    font-size: 34px;
}

.Mission-Goals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 60%;
    align-items: center;
    gap: 10%;
    margin-bottom: 5%;
}

.Mission-Goals img {
    width: 100%;
}

.Values-Strategy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 60%;
    align-items: center;
    gap: 10%;
    margin-bottom: 5%;
}

.Values-Strategy img {
    width: 100%;
}

.President-Statement {
    display: flex;
    width: 60%;
    /* background-image: url("https://lshtgdpdskhqqxdcwpjo.supabase.co/storage/v1/object/public/photos//SiiF-Logo.png");
    background-size: contain; */
    margin-bottom: 10%;
}

.President-Statement div {
    background-color: rgba(0, 0, 0, 0.6);
}

.President-Statement p {
    text-align: center;
    width: 60%;
    color: white;
    font-size: 30px;
    margin: 5% auto;
}

.committee-intro {
    display: flex;
    flex-direction: column;
    width: 100vw;
    color: white;
}

.committee-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://lshtgdpdskhqqxdcwpjo.supabase.co/storage/v1/object/public/photos/committee/Committee.webp');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -1;
}

.committee-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    margin-bottom: 5%;
}

.committee-text h1 {
    font-size: 6rem;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin: 0;
    margin-bottom: 2%;
    width: 80%;
    margin-top: 5%;
}

.committee-text p {
    font-size: 1.2rem;
    margin-bottom: 5%;
    width: 80%;
}

.committee-text img {
    width: 800px;
    margin-bottom: 5%;
}

.committee {
    text-align: center;
    width: 80%;
}

.committee h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 10%;
    color: #293453;

}

.committee-member {
    color: #3a445f;
    margin-bottom: 5%;
    gap: 5%;
}

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

.committee-member h2 {
    margin-bottom: -1%;
    color: #3e4b68;
}

.committee-member h3 {
    font-weight: normal;
    color: #71819a;
}

.officers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.publications-intro {
    display: flex;
    flex-direction: column;
    width: 100vw;
}

.publications-text {
    width: 80%;
    text-align: center;
}

.contact-intro {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 300px;
}

.contact-page {
    background-color: #293453;
    background-image: url("https://lshtgdpdskhqqxdcwpjo.supabase.co/storage/v1/object/public/photos/committee/Committee.webp");
    background-size: 100% auto;
    background-repeat: repeat;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 0, 0.3);
    border-radius: 12px;
}

.contact-intro h1 {
    color: #e1e8ed;
    text-align: center;
    align-content: center;
    justify-content: center;
    font-size: 6rem;
    letter-spacing: -1px;
    flex-grow: 1;
    margin-bottom: 0px;
}



.two-equal-grid {
    width: 60%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
    padding: 24px 50px;
    background-color: #eff8ff;
    border-radius: 12px;
    border-color: #e1e8ed;
    border-style: solid;
    border-width: 3px;
}


.member p {
    margin-bottom: 36px;
}

.social-media {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
}

.enquiry {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 24px;
    font-weight: bold;
    margin-top: 16px;
    margin-bottom: 8px;
}

select,
input,
textarea,
.enquiry button,
.login button {
    width: 100%;
    padding: 10px 20px;
    resize: none;
    text-align: left;
    font-size: 16px;
    margin-bottom: 24px;
    font-family: Arial, sans-serif;
}

.enquiry button,
.login button {
    text-align: center;
    cursor: pointer;
}

.login {
    display: flex;
    flex-direction: column;
}

.login h1 {
    font-size: 32px;
    text-align: center;
}

.instagram-posts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.publications-table {
    margin: 20px auto;
    width: 100%;
    overflow-x: auto;
    max-width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 16px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    table-layout: fixed;
}

thead th {
    background-color: #293453;
    color: white;
    padding: 12px 15px;
    text-align: left;
    border-bottom: 2px solid #ddd;
}

tbody tr {
    border-bottom: 1px solid #ddd;
}

tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

td {
    padding: 12px 15px;
    text-align: left;
}

td a {
    color: #293453;
    text-decoration: none;
    font-weight: bold;
}

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

.publications-table {
    margin-top: 40px;
    margin-bottom: 40px;
}

.publications-intro {
    text-align: center;
    margin-left: 5%;
    margin-right: 5%;
}

.publications-table {
    margin: 20px auto;
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
}

.article-body {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.article-intro {
    font-size: 20px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 30px;
}

.article-body h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #222;
}

.article-body h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #333;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul, .article-body ol {
    margin: 20px 0;
    padding-left: 25px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-conclusion {
    margin-top: 40px;
    padding: 20px;
    background-color: #f5f9ff;
    border-radius: 8px;
}

.article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #e0e0e0;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-link {
    color: #007bff;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 30px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .article-footer {
        flex-direction: column;
        gap: 20px;
    }
}

.articles-section {
    max-width: 100%;
    margin: 40px auto;
    padding: 0 20px;
    width: 100%;
}

.article-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.article-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    height: auto;
    max-height: 450px;
    border: 1px solid #e0e0e0;
}

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

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

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgb(15, 20, 36);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.article-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    flex-grow: 1;
    justify-content: space-between;
}

.article-title {
    font-size: 20px;
    margin: 0 0 10px;
    color: rgb(15, 20, 36);
    line-height: 1.4;
}

.article-date {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    padding: 10px 18px;
    background-color: rgb(15, 20, 36);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    opacity: 0.9;
    align-self: flex-start;
    margin-top: auto;
}

.read-more:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.articles-section h2 {
    margin-bottom: 25px;
    font-size: 28px;
    color: rgb(15, 20, 36);
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.articles-section h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: rgb(15, 20, 36);
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .article-cards {
        padding: 15px;
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }
    
    .article-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .article-cards {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .article-card {
        height: 400px;
    }
    
    .article-image {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .article-cards {
        grid-template-columns: 1fr;
    }
    
    .article-card {
        max-width: 320px;
        margin: 0 auto;
    }
}
/* Article Page Styling - Modern Redesign */
.article-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.article-header {
    background-color: rgb(15, 20, 36);
    color: white;
    padding: 80px 0 60px;
    margin-bottom: 0;
    position: relative;
    text-align: center;
    width: 100%;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 auto 20px;
    color: white;
    font-weight: 700;
    letter-spacing: -0.5px;
    max-width: 1000px;
    padding: 0 30px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.article-featured-image {
    max-width: 1200px;
    margin: -50px auto 60px;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.image-caption {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    padding: 0 20px;
}

.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px 60px;
}

pre {
    background-color: #f7f9fc;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    border: 1px solid #e0e0e0;
    margin: 20px 0;
    white-space: pre-wrap;
}

code {
    background-color: #f7f9fc;
    padding: 3px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
    color: #333;
    border: 1px solid #e0e0e0;
}

.article-intro {
    font-size: 22px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 25px;
    background-color: #f8f9fb;
    border-left: 4px solid rgb(15, 20, 36);
    border-radius: 0 12px 12px 0;
}

.article-intro p {
    margin: 0;
}

.article-body h2 {
    font-size: 32px;
    margin: 60px 0 25px;
    color: rgb(15, 20, 36);
    font-weight: 600;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 15px;
}

.article-body h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: rgb(15, 20, 36);
}

.article-body h3 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: rgb(15, 20, 36);
    font-weight: 600;
}

.article-body h4 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: rgb(15, 20, 36);
    font-weight: 600;
}

.article-body p {
    margin-bottom: 25px;
}

.article-body strong {
    font-weight: 700;
    color: #222;
}

.article-body em {
    font-style: italic;
}

.article-body a {
    color: rgb(15, 20, 36);
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 20, 36, 0.3);
    transition: all 0.2s ease;
}

.article-body a:hover {
    color: #333;
    border-bottom-color: rgb(15, 20, 36);
}

.article-body ul, .article-body ol {
    margin: 25px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 15px;
}

blockquote {
    margin: 40px 0;
    padding: 30px 40px;
    background-color: #f7f9fc;
    border-left: 4px solid rgb(15, 20, 36);
    font-style: italic;
    border-radius: 0 12px 12px 0;
    position: relative;
}

blockquote:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 20px;
    font-size: 60px;
    color: rgba(15, 20, 36, 0.1);
    font-family: Georgia, serif;
}

blockquote p {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #444;
    position: relative;
    z-index: 1;
}

blockquote cite {
    display: block;
    font-size: 16px;
    color: #666;
    font-style: normal;
    margin-top: 15px;
    font-weight: 500;
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.article-table th {
    background-color: rgb(15, 20, 36);
    color: white;
    text-align: left;
    padding: 15px 20px;
    font-weight: 500;
}

.article-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.article-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

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

.article-table tr:hover {
    background-color: #f0f2f5;
}

/* New LaTeX Equation Block */
.equation-block {
    margin: 30px 0;
    padding: 25px;
    background-color: #fafbfd;
    border-radius: 10px;
    text-align: center;
    overflow-x: auto;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.equation-block .equation {
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    color: #333;
    padding: 5px 0;
}

.equation-block .equation-number {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-style: italic;
}

.equation-block .equation-caption {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
}

.callout-box {
    background-color: #f7f9fc;
    border-left: 4px solid rgb(15, 20, 36);
    padding: 25px 30px;
    margin: 35px 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.callout-box h4 {
    margin-top: 0;
    color: rgb(15, 20, 36);
    font-size: 22px;
    margin-bottom: 15px;
}

.callout-box p {
    margin-bottom: 15px;
}

.callout-box p:last-child {
    margin-bottom: 0;
}

.strategy-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    margin: 35px 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.strategy-card h3 {
    margin-top: 0;
    color: rgb(15, 20, 36);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.strategy-card h4 {
    color: rgb(15, 20, 36);
    font-size: 18px;
    margin: 22px 0 10px;
}

.strategy-card p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.strategy-card p:last-child {
    margin-bottom: 0;
}

.article-figure {
    margin: 40px 0;
    text-align: center;
}

.article-chart {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.article-chart:hover {
    transform: scale(1.02);
}

.article-figure figcaption {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
    font-style: italic;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.article-conclusion {
    margin-top: 50px;
    padding: 30px;
    background-color: #f7f9fc;
    border-radius: 12px;
    border-left: 4px solid rgb(15, 20, 36);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.article-conclusion h3 {
    margin-top: 0;
    color: rgb(15, 20, 36);
    font-size: 24px;
    margin-bottom: 20px;
}

.article-conclusion p {
    margin-bottom: 0;
}

.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

.related-articles h3 {
    margin-bottom: 25px;
    font-size: 24px;
    color: rgb(15, 20, 36);
    position: relative;
    padding-bottom: 12px;
}

.related-articles h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: rgb(15, 20, 36);
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.related-article {
    display: block;
    padding: 25px;
    border-radius: 12px;
    background-color: #f8f9fb;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.related-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.related-article h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    color: rgb(15, 20, 36);
}

.related-date {
    font-size: 14px;
    color: #666;
}

.article-footer {
    max-width: 1000px;
    margin: 30px auto 60px;
    padding: 30px 30px 0;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-button {
    display: inline-block;
    padding: 14px 20px;
    background-color: rgb(15, 20, 36);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    opacity: 0.9;
    font-weight: 500;
}

.back-button:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-link {
    color: rgb(15, 20, 36);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #f7f9fc;
}

.share-link:hover {
    background-color: #edf1f7;
    color: #000;
}

@media (max-width: 768px) {
    .article-header {
        padding: 60px 0 40px;
    }
    
    .article-header h1 {
        font-size: 30px;
    }
    
    .article-featured-image {
        margin: -30px auto 40px;
        padding: 0 15px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .article-body {
        font-size: 17px;
    }
    
    .article-intro {
        font-size: 19px;
        padding: 20px;
    }
    
    .article-body h2 {
        font-size: 26px;
        margin: 40px 0 20px;
    }
    
    .article-body h3 {
        font-size: 22px;
        margin: 30px 0 15px;
    }
    
    .article-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    blockquote {
        padding: 20px 25px;
    }
    
    blockquote p {
        font-size: 18px;
    }
    
    .article-table {
        display: block;
        overflow-x: auto;
    }
    
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .strategy-card {
        padding: 25px;
    }
}

/* Event Page Styling */

.event-full-details {
    padding: 40px 0;
    width: 100%;
}

.hidden {
    display: none;
}

.event-description-section,
.event-gallery,
.event-details-section {
    margin-bottom: 40px;
}

.event-description-section h2,
.event-gallery h2,
.event-details-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: rgb(15, 20, 36);
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

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

.gallery-item {
    height: 220px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

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

.view-details-btn,
.back-to-summary-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: rgb(15, 20, 36);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.view-details-btn:hover,
.back-to-summary-btn:hover {
    background-color: #333;
}

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

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
}
.committee-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto 60px;
    max-width: 900px;
    padding: 0 30px;
}

.committee-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    background-color: #f7f9fc;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid rgb(15, 20, 36);
}

/* Contact Page Styling */

.contact-hero {
    background-color: rgb(15, 20, 36);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-section {
    margin: 0 auto 80px;
    max-width: 1200px;
    padding: 0 20px;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.contact-method {
    background-color: #f7f9fc;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-method h2 {
    color: rgb(15, 20, 36);
    margin-top: 0;
    font-size: 1.6rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.contact-method p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.enquiry-form {
    background-color: #f7f9fc;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.enquiry-form label {
    display: block;
    margin-bottom: 8px;
    color: rgb(15, 20, 36);
    font-weight: 600;
}

.enquiry-form select,
.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: inherit;
    font-size: 1rem;
}

.enquiry-form button {
    background-color: rgb(15, 20, 36);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.enquiry-form button:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

.publication-tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.publication-tab {
    padding: 15px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.publication-tab:hover {
    color: rgb(15, 20, 36);
}

.publication-tab.active {
    color: rgb(15, 20, 36);
    border-bottom: 3px solid rgb(15, 20, 36);
}

.publication-content {
    display: none;
}

.publication-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.disclaimer {
    background-color: #f8f9fa;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.macro-description {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
}

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

.events-hero {
    background-color: rgb(15, 20, 36);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.events-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.events-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.events-section {
    margin: 0 auto 80px;
    max-width: 100%;
    padding: 0 20px;
    overflow-x: hidden;
}

.event-tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.event-tab {
    padding: 15px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.event-tab:hover {
    color: rgb(15, 20, 36);
}

.event-tab.active {
    color: rgb(15, 20, 36);
    border-bottom: 3px solid rgb(15, 20, 36);
}

.event-content-container {
    display: none;
}

.event-content-container.active {
    display: flex;
    animation: fadeIn 0.5s ease;
    width: 80%;
    margin: 0 auto;
}

.event-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    margin: 20px 0;
}

.event-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-image-wrapper {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 350px;
}

.event-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-image-wrapper:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .event-content {
        flex-direction: column-reverse;
    }
    
    .event-image-wrapper {
        flex: none;
        width: 100%;
        max-width: 100%;
        height: 250px;
        margin-bottom: 20px;
        box-sizing: border-box;
    }
}

.committee-hero {
    background-color: rgb(15, 20, 36);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.committee-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.committee-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.committee-section {
    margin: 0 auto 80px;
    max-width: 1200px;
    padding: 0 20px;
}

.committee-description {
    margin-bottom: 60px;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.committee-group {
    margin-bottom: 60px;
}

.committee-group h2 {
    color: rgb(15, 20, 36);
    font-size: 2rem;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.committee-subheader {
    margin: 40px 0 20px;
}

.committee-subheader h3 {
    color: rgb(15, 20, 36);
    font-size: 1.5rem;
    font-weight: 600;
}

.committee-member-featured {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.committee-member-featured img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.committee-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.committee-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.committee-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.committee-member img:hover {
    transform: scale(1.05);
}

.member-info h3 {
    color: rgb(15, 20, 36);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.member-info h4 {
    color: #555;
    font-size: 1rem;
    font-weight: normal;
}

@media (max-width: 768px) {
    .committee-hero h1 {
        font-size: 2.5rem;
    }
    
    .committee-members {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .committee-member img {
        width: 120px;
        height: 120px;
    }
}

.about-hero {
    background-color: rgb(15, 20, 36);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

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

.about-section {
    margin: 0 auto 80px;
    max-width: 80%;
    padding: 0 20px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-story h2 {
    color: rgb(15, 20, 36);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-story h3 {
    color: #555;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: normal;
    font-style: italic;
}

.about-story p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-mission {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    background-color: #f7f9fc;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mission-image {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.mission-image img {
    max-width: 100%;
    height: auto;
}

.mission-content {
    flex: 2;
}

.mission-content h2 {
    color: rgb(15, 20, 36);
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission-content p {
    color: #333;
    line-height: 1.8;
}

.about-goals h2,
.about-values h2,
.about-pillars h2 {
    color: rgb(15, 20, 36);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.goals-grid,
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.goal-card,
.pillar-card {
    background-color: #f7f9fc;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.goal-card:hover,
.pillar-card:hover {
    transform: translateY(-5px);
}

.goal-card h3,
.pillar-card h3 {
    color: rgb(15, 20, 36);
    font-size: 2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.goal-card p,
.pillar-card p {
    color: #555;
    line-height: 1.6;
}

.about-values {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    font-size: 1.2rem;
}

.values-image {
    max-width: 300px;
    text-align: center;
    margin:auto;
}

.values-image img {
    max-width: 100%;
    height: auto;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 15px;
    color: #333;
    line-height: 1.6;
}

.values-list li span {
    font-weight: bold;
    color: rgb(15, 20, 36);
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-mission {
        flex-direction: column;
    }
    
    .mission-image {
        max-width: 200px;
        margin-bottom: 20px;
    }
    
    .about-values {
        flex-direction: column-reverse;
    }
    
    .values-image {
        max-width: 200px;
        margin-bottom: 20px;
    }
    
    .goals-grid,
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* Sponsors section styling */
.about-sponsors {
    margin: 4rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.about-sponsors h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); */
    gap: 2rem;
    margin: 3rem 0;
}

.sponsor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.sponsor-card:hover {
    transform: translateY(-5px);
}

.sponsor-logo {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sponsor-card h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.sponsor-card p {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.become-sponsor {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #e9ecef;
    border-radius: 8px;
    font-size: 1.5rem;
}

.become-sponsor h3 {
    margin-bottom: 1rem;
}

.become-sponsor .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.become-sponsor .btn:hover {
    background-color: #003d80;
}

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

.centered-text {
    text-align: center;
    margin: 20px 0;
}

