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

 body {
     font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
     line-height: 1.5;
 }

 .navbar {
     background-color: white;
     padding: 0.5rem;
 }

 .container-fluid {
     max-width: 100%;
     padding: 0 1rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
 }

 .navbar-brand {
     color: #fff;
     text-decoration: none;
     font-size: 1.25rem;
     font-weight: 500;
 }

 .navbar-toggler {
     background: transparent;
     border: 1px solid rgba(255, 255, 255, 0.1);
     padding: 0.25rem 0.75rem;
     cursor: pointer;
     display: none;
 }

 .navbar-toggler-icon {
     display: inline-block;
     width: 1.5em;
     height: 1.5em;
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
 }

 .navbar-collapse {
     flex-basis: 100%;
     flex-grow: 1;
     align-items: center;
 }

 .navbar-nav {
     display: flex;
     list-style: none;
     margin-left: auto;
 }

 .nav-item {
     margin-left: 1rem;
 }

 .nav-link {
     color: rgba(255, 255, 255, 0.55);
     text-decoration: none;
     padding: 0.5rem 1rem;
     display: block;
     transition: color 0.15s ease-in-out;
 }

 .nav-link:hover,
 .nav-link.active {
     color: #fff;
 }
 
 .mt-5 {
     margin-top: 3rem;
 }

 .row {
     display: flex;
     flex-wrap: wrap;
     margin: 0 -0.75rem;
 }

 .col-lg-12 {
     flex: 0 0 100%;
     max-width: 100%;
     padding: 0 0.75rem;
 }

 .display-4 {
     font-size: 3.5rem;
     font-weight: 300;
     line-height: 1.2;
 }

 .lead {
     font-size: 1.25rem;
     font-weight: 300;
 }

 .my-4 {
     margin-top: 1.5rem;
     margin-bottom: 1.5rem;
 }

 hr {
     border: 0;
     border-top: 1px solid rgba(0, 0, 0, 0.1);
 }

 @media (max-width: 991px) {
     .navbar-toggler {
         display: block;
     }

     .navbar-collapse {
         display: none;
     }

     .navbar-collapse.show {
         display: block;
     }

     .navbar-nav {
         flex-direction: column;
         margin-left: 0;
     }

     .nav-item {
         margin-left: 0;
     }

     .display-4 {
         font-size: 2.5rem;
     }
 }

 :root {
     --bs-spacer: 4rem;
 }

 .container {
     /* margin: 0 auto; */
     /* padding: 0 2rem; */
     height: 100dvh;
     width: 100dvw;
     padding: var(--bs-spacer);
 }

 .hero {
     display: grid;
     grid-template-columns: repeat(12, 1fr);
     grid-template-rows: repeat(12, 1fr);
     gap: 2rem;
     background: linear-gradient(90deg, #4e9fff 0%, #3ecd49 100%);
     position: relative;
 }

 .hero .title {
     font-size: 4rem;
     text-transform: uppercase;
     font-weight: 700;
     line-height: 1.1;
     color: white;
     grid-column-start: 1;
     grid-column-end: 6;
     grid-row-start: 1;
     grid-row-end: 7;
     padding: 2.5rem;
     border: 0.3rem solid white;
     border-radius: 1rem;
     z-index: 2;
     display: flex;
     align-items: center;
     background: rgba(78, 159, 255, 0.3);
 }

 .hero .description {
     grid-column-start: 1;
     grid-column-end: 5;
     grid-row-start: 8;
     grid-row-end: 12;
     z-index: 2;
     color: white;
     font-size: 0.95rem;
     line-height: 1.6;
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .hero .description button {
     background-color: #ffeb3b;
     color: #000;
     border: none;
     padding: 0.75rem 1.5rem;
     font-size: 1rem;
     font-weight: 700;
     border-radius: 0.25rem;
     cursor: pointer;
     width: fit-content;
 }

 .hero .image {
     grid-column-start: 4;
     grid-column-end: 13;
     grid-row-start: 1;
     grid-row-end: 13;
     border-radius: 1rem;
     z-index: 1;
     width: 100%;
     height: 100%;
     overflow: hidden;
 }

 .hero .image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .map-embedding {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    background: #f5f5f5;
    position: relative;
}

.map-embedding iframe {
    flex: 1;
    max-width: 45%;
    height: 500px;
    border: 4px solid #000;
    border-radius: 1rem;
}

.map-embedding .description {
    flex: 1;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-embedding .description h3 {
    color: #3ecd49;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
}

.map-embedding .description h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: #000;
}

.map-embedding .description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.map-embedding .description button {
    background-color: #ffeb3b;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.25rem;
    cursor: pointer;
    width: fit-content;
}

.items {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2rem;
    width: 100%;
}

/* each taking 1/3 */
.item {
    flex: 1 1 33.333%;
    border: 2px solid #000;
    border-radius: 1rem;
    overflow: hidden;
    background: white;
    display: flex;
    flex-direction: column;
}

.item-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.item-time {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.item-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    color: #000;
}

.item-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.item-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

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

.news {
    background: #f5f5f5;
}

.news h2 {
    color: #3ecd49;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news > h2:first-of-type {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 1rem;
}

.subline {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

.subline p {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

.subline button {
    background-color: #ffeb3b;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.25rem;
    cursor: pointer;
}

.vision-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    background: #f5f5f5;
}

.vision-content {
    flex: 1;
    max-width: 50%;
}

.vision-label {
    color: #3ecd49;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.vision-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000;
}

.vision-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
}

.vision-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary {
    background-color: #ffeb3b;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #fdd835;
}

.btn-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

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

.vision-image {
    flex: 1;
    max-width: 50%;
    position: relative;
}

.image-border-wrapper {
    position: relative;
    border: 3px solid #000;
    border-radius: 1rem;
    overflow: hidden;
}

.image-border-wrapper::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 3px solid #1976d2;
    border-radius: 1.25rem;
    z-index: -1;
}

.image-border-wrapper::after {
    content: '';
    position: absolute;
    top: -24px;
    left: -24px;
    right: -24px;
    bottom: -24px;
    border: 3px solid #90caf9;
    border-radius: 1.5rem;
    z-index: -2;
}

.vision-image img {
    width: 100%;
    height: auto;
    display: block;
}

.engagement-section {
    background: repeating-linear-gradient(
        -45deg,
        #ffeb3b,
        #ffeb3b 100px,
        #ffffff 100px,
        #ffffff 200px
    );
    padding: 4rem;
}

.engagement-header {
    text-align: center;
    margin-bottom: 3rem;
}

.engagement-title {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #000;
}

.engagement-subtitle {
    font-size: 1rem;
    color: #000;
}

.engagement-options {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-end;
}

.engagement-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.engagement-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.engagement-btn {
    background: transparent;
    color: #1976d2;
    border: 2px solid #1976d2;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.engagement-btn:hover {
    background: #1976d2;
    color: white;
}

.events-section {
    background: #f5f5f5;
    padding: 4rem;
}

.events-header {
    margin-bottom: 2rem;
}

.events-label {
    color: #3ecd49;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.events-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #000;
}

.events-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    max-width: 600px;
}

.events-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #000;
    color: white;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    border: 3px solid #000;
    border-radius: 1rem;
    padding: 2rem;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    padding: 1rem;
    border-right: 2px solid #e0e0e0;
}

.event-time {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.event-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
}

.event-month {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
}

.event-content {
    flex: 1;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.event-location {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.75rem;
}

.event-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
}

.event-action {
    display: flex;
    align-items: center;
}

.event-details-btn {
    background-color: #ffeb3b;
    color: #000;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.event-details-btn:hover {
    background-color: #fdd835;
}

.footer {
    background: linear-gradient(90deg, #4e9fff 0%, #3ecd49 100%);
    padding: 3rem 4rem;
    border-radius: 1rem 1rem 0 0;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    color: white;
}

.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-title {
    font-weight: 700;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: opacity 0.2s;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-funding {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.funding-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.funding-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.funding-logo img {
    max-height: 60px;
    width: auto;
}

.funding-text {
    font-size: 0.75rem;
    line-height: 1.4;
}

.funding-text p {
    margin: 0;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-label {
    font-size: 0.875rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: opacity 0.2s;
}

.social-link:hover {
    opacity: 0.8;
}

.social-link svg {
    width: 20px;
    height: 20px;
}