:root {
    --primary: #65B530;
    --secondary: #9B9B9B;
    --light: #F5F5F5;
    --dark: #141414;
    --bs-turrian-purple: #50404D;
    --prussian-blue: #003153;
}
h2 {
    color: #003153; /* Dark blue color for h2 */
}
/* Base Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Public Sans', sans-serif;
    color: #141414; /* Chinese black */
}

/* Navbar Styles */
.navbar-link.active {
    color: #fff200 !important; /* Yellow color for active link */
    font-weight: bold;
}

.custom-navbar {
    width: 100%;
    background-color: #141414; /* Prussian Blue background */
    border-bottom: 1px solid #141414; /* Light bottom border */
    position: sticky;
    top: 0;
    z-index: 1000; /* Keeps navbar on top */
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Keep it as space-between to distribute space */
    width: 100%; /* Full width to stretch across the navbar */
    padding: 10px 0px; /* Add some padding to the sides */
    position: relative; /* Needed for positioning adjustments */
}

/* Adjust the navbar brand to set exact spacing from the left */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none; /* Remove underline */
    margin-left: 20px; /* Align 20px from the left */
}

.navbar-logo {
    height: 60px; /* Logo height */
    margin-right: 20px; /* Spacing between logos */
}

.navbar-toggler {
    display: none; /* Hidden by default */
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
}

.toggler-icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff; /* White color for toggler */
    margin: 6px 0;
    transition: 0.4s; /* Smooth transition */
}

/* Navbar Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    margin-right: 60px; /* Add some margin to bring it closer to the center */
}

.navbar-items {
    list-style: none; /* Remove list styling */
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-item {
    margin: 0 15px; /* Space between menu items */
    position: relative; /* For dropdown positioning */
}

.navbar-link {
    text-decoration: none; /* Remove underline */
    color: #ffffff; /* White for links */
    font-weight: 500; /* Medium weight */
    padding: 10px 0; /* Padding for better click/tap area */
    transition: color 0.3s ease; /* Smooth transition */
}

.navbar-link:hover,
.dropdown-item:hover {
    color: #fff200; /* Turrian Purple on hover */
    text-decoration: none; /* Ensure no underline */
}

/* Remove Underline and Background on Hover */
.navbar-link,
.dropdown-item {
    background-color: transparent; /* Ensure no background change */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Smooth text color transition */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Carousel Styles */
.custom-carousel {
    width: 100%;
    overflow: hidden;
    padding-bottom: 30px;
}

.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-item {
    position: relative;
}

.carousel-image {
    max-height: 600px;
    width: 100%;
    object-fit: contain;
}

/* Section Styles */
.custom-section {
    padding: 60px 0;
    line-height: 1.8;
}

.custom-white {
    background-color: white;
}

.custom-chinese-black {
    background-color: #141414;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Title and Text Styles */
.section-title {
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 2rem;
}

/* White Background Container Titles */
.custom-white .section-title {
    color: #003153;  /* Prussian Blue */
}

/* Black Background Container Titles */
.custom-chinese-black .section-title {
    color: #FFFFFF;  /* White */
}

.section-subtitle {
    color: #003153;
    text-align: center;
    font-size: 1.5rem;
    margin-top: 10px;
}

.section-text,
.section-list {
    text-align: justify;
    color: #141414;
    font-size: 1rem;
    margin: 20px 0;
}

.section-list li {
    margin-bottom: 10px;
    padding-left: 1em;
}

/* Donors Section Styles */
.donors-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.donor-card {
    background-color: #FFFFFF;
    color: #003153;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    max-width: 350px;
    margin: 10px;
}

.donor-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.donor-name {
    margin: 0;
    color: #003153;
    font-weight: bold;
}

.donor-details {
    margin: 0;
    color: #003153;
}

.donors-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    color: #FFFFFF;
    padding: 20px;
    background-color: #141414;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* CSS for Themes Boxes Only */
.themes-section {
    text-align: center;
    margin: 50px auto; /* Center align section */
    max-width: 1200px; /* Set a max width for the section */
    padding: 10px 0; /* Increase padding for more height */
    min-height: 500px; /* Set a minimum height */
}

.themes-section .section-title {
    color: #003153; /* Prussian blue */
    margin-bottom: 30px;
    font-size: 2rem; /* Adjusted for visibility */
}

.themes-container {
    display: flex;
    justify-content: center; /* Center align all items */
    gap: 20px; /* Add some space between the theme boxes */
    flex-wrap: wrap; /* Allows wrapping if needed */
}

.theme-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    height: 250px; /* Set box height */
    text-align: center;
    position: relative;
    transition: all 0.5s ease; /* Slower transition for smooth effect */
    margin: 10px; /* Margin for centering */
}

.theme-image-container {
    overflow: hidden;
}

.theme-image {
    width: 100%;
    height: 200px; /* Keep image height */
    object-fit: cover;
    transition: transform 0.5s ease; /* Slow down zoom effect */
}

.theme-content {
    height: 40px; /* Initial height for white section */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-title-initial {
    font-size: 1.2rem; /* Slightly larger font size */
    font-weight: 600;
    color: #333;
    margin: 0; /* Ensure title fits neatly */
}

.theme-expand-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 10px 10px;
    background: #fff;
    border-top: 1px solid #ddd;
    transform: translateY(0); /* Initially hidden below */
    transition: all 0.6s ease; /* Slower transition for smooth effect */
    opacity: 0; /* Hide initially */
}

.theme-card:hover .theme-expand-content {
    bottom: 0; /* Slide up on hover */
    opacity: 1; /* Make visible */
    height: 100px; /* Set expanded height */
}

.theme-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 5px 0;
}

.theme-btn {
    display: inline-block;
    margin: 10px auto;
    padding: 8px 20px;
    background-color: #003153;
    color: white;
    border-radius: 5px;
    border: none;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.theme-btn:hover {
    background-color: #002040; /* Slightly darker shade on hover */
    text-decoration: none; /* Remove underline on hover */
}

.theme-card:hover .theme-image {
    transform: scale(1.05);
}

.who-can-apply-section {
    background-color: #111; /* Chinese Black */
    color: #fff; /* White text for contrast */
    padding: 50px 0 200px 0; /* Keep top padding the same, increase bottom padding */
    text-align: center;
}

.content-wrapper {
    max-width: 800px; /* Limit the width for better readability */
    margin: 0 auto;
    padding: 0 15px;
}

.who-can-apply-section .section-title {
    color: white; /* White color for the "Who Can Apply" section */
    margin-bottom: 30px;
    font-size: 2rem; /* Adjusted for visibility */
}

.info-box-wrapper {
    display: flex;
    justify-content: center; /* Center the info box */
    margin-top: 20px;
}

.info-box {
    background-color: white; /* Light background */
    color: #333; /* Dark text */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 800px;
    width: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease; /* Zoom-in effect */
    cursor: pointer; /* Pointer on hover */
}

.info-box:hover {
    transform: scale(1.05); /* Slight zoom-in effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

.info-text {
    font-size: 1.1rem; /* Slightly larger font size */
    margin-bottom: 10px; /* Margin between the text */
}

.info-note {
    font-size: 1rem; /* Font size for the note */
    font-style: italic; /* Italicized note */
    color: #555; /* Slightly lighter color */
}

/* Timeline Section */
.timeline-section {
    text-align: center;
    margin: 50px auto;
    max-width: 1000px; /* Set max-width for center alignment */
    padding: 50px 0;
}

.timeline-title {
    color: #003153;
    margin-bottom: 30px;
    font-size: 2.5rem; /* Larger font size for the title */
    font-weight: 700;
}

/* Timeline Container */
.timeline {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center align items */
    gap: 30px; /* Add space between timeline events */
    margin-top: 20px;
}

/* Timeline Event Styles */
.timeline__event {
    display: flex;
    align-items: center; /* Center content vertically */
    width: 70%; /* Reduce width for better alignment */
    max-width: 600px; /* Set maximum width */
    margin-bottom: 30px;
    padding: 20px;
    position: relative;
    background: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease; /* Smooth transition effect */
}

/* Icon Styling */
.timeline__event__icon {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    background: #003153;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Event Content */
.timeline__event__content {
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    text-align: left; /* Align text to the left */
    transition: transform 0.4s ease, box-shadow 0.4s ease; /* Smooth transition effect */
}

.timeline__event__date {
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.timeline__event__title {
    font-weight: 600;
    color: white;
    margin: 0;
}

/* Hover Effect */
.timeline__event:hover {
    transform: scale(1.03); /* Slightly expand on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Add shadow effect on hover */
}

.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 1rem 0;
    font-size: 0.9em;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left, .footer-right {
    flex: 0 0 48%; /* This gives each side 48% width, allowing for some space between */
}

.footer-right {
    text-align: right;
}

.footer-logo {
    width: 100px;
    height: auto;
}

.footer p {
    margin: 0;
    line-height: 1.5;
    color: #eaeaea;
}

.footer h5 {
    font-size: 1em;
    margin-bottom: 10px;
}

.footer .social-icons {
    margin-top: 10px;
}

.footer .social-icons a {
    color: #ffffff;
    font-size: 1.2em;
    transition: color 0.3s ease;
    margin-left: 10px; /* Add some space between icons */
}

.footer .social-icons a:hover {
    color: #f02105;
}

.footer-copyright {
    text-align: center;
    margin-top: 1rem;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%; /* Ensure it spans the full width */
}

.copyright-section {
    background: #000000;
    padding: 5px 0;
    color: #50404D;
}

.designed-by {
    color: #50404D;
    font-size: 11px;
    text-align: right;
}

.designed-by a {
    color: #50404D;
    text-decoration: none;
    border-bottom: none;
}

.designed-by a:hover {
    color: #f02105;
}

/* Project Section Styles */
.projects-section {
    padding: 60px 0;
    background-color: white;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* Align items to the start */
    gap: 20px; /* Space between cards */
    padding: 0 15px; /* Reduce padding on left and right */
    margin: 60px auto; /* Center container */
    max-width: 1200px; /* Set a max-width for the container to control overall width */
}

.project-container-full-width {
    max-width: 100%; /* Expand container to full width */
    padding: 0; /* Remove all padding */
    margin: 0; /* Remove default margin */
}

.project-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 28%; /* Limit each card to 48% width */
    height: 250px; /* Set a fixed height to ensure consistent size */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Space out the content vertically */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px; /* Space between rows */
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.project-title {
    color: #003153;
    font-size: 1.2rem;
    margin-bottom: 10px;
    flex-grow: 1; /* Allows title to grow and take available space */
}

.project-professor {
    color: #141414;
    font-size: 1rem;
    margin: 10px 0 15px; /* Margin for separation */
}

.project-btn {
    display: inline-block;
    background-color: #003153;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    width: 85px; /* Set a fixed width for the button */

}

.project-btn:hover {
    background-color: #002040;
}

/* Hidden Detailed Card Styles */
/* Overlay Styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    z-index: 500; /* Lower z-index than the card but higher than other content */
    display: none; /* Hidden by default */
}

/* Detailed Card Styles */
/* Hidden Detailed Card Styles */
.project-details-card {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow to make it stand out */
    padding: 30px;
    width: 80%;
    max-width: 800px;
    z-index: 1000; /* Higher z-index to appear above the overlay */
    height: 600px; /* Fixed height for uniform size */
    overflow-y: auto; /* Enable vertical scrolling when content overflows */
}

/* Custom Scrollbar Styles */
.project-details-card::-webkit-scrollbar {
    width: 16px; /* Width of the scrollbar */
}

.project-details-card::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
    border-radius: 10px; /* Optional: rounded corners for track */
}

.project-details-card::-webkit-scrollbar-thumb {
    background-color: #555; /* Darker thumb color for better visibility */
    border-radius: 0px; /* Remove rounded corners for rectangular look */
    border: 4px solid #f1f1f1; /* Space around thumb, same color as track */
}

.project-details-card::-webkit-scrollbar-thumb:hover {
    background-color: #333; /* Darker color on hover for the thumb */
}

/* For Firefox */
.project-details-card {
    scrollbar-width: thick; /* Width of the scrollbar */
    scrollbar-color: #555 #f1f1f1; /* Thumb color #555 and track color #f1f1f1 */
}

/* Style for the close button */
.close-details-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.close-details-btn:hover {
    color: red;
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .project-card {
        flex: 0 0 45%;
        max-width: 45%;
        height: 280px; /* Adjust height for smaller screens */
    }
}

@media (max-width: 768px) {
    .project-card {
        flex: 0 0 100%;
        max-width: 100%;
        height: auto; /* Remove fixed height on small screens */
    }
}



.terms-button-wrapper {
    text-align: center;
    margin-top: 20px;
}

.terms-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #66023C; /* Prussian Blue */
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.terms-button:hover {
    background-color: #004b80; /* Slightly lighter blue on hover */
}

/* Responsive Styles */
@media (max-width: 991px) {
    body {
        overflow-x: hidden;
    }

    /* Hamburger menu styles */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        padding: 10px;
        position: fixed;
        top: 10px;
        right: 15px; /* Position the hamburger icon on the right */
        z-index: 1003;
        background-color: #66023c;
        border-radius: 5px;
        width: 40px;
        height: 40px;
        transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        margin: 0; /* Ensure no extra margin */
    }

    .hamburger:hover {
        background-color: #66023c;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
    }

    .hamburger span,
    .hamburger span::before,
    .hamburger span::after {
        display: block;
        width: 24px;
        height: 3px;
        background-color: white;
        transition: all 0.3s ease;
        position: absolute;
    }

    .hamburger span::before {
        content: "";
        top: -8px;
    }

    .hamburger span::after {
        content: "";
        top: 8px;
    }

    .hamburger.active {
        border-radius: 5px 5px 0 0;
    }

    .hamburger.active span {
        background-color: transparent;
    }

    .hamburger.active span::before {
        top: 0;
        transform: rotate(45deg);
    }

    .hamburger.active span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    /* Navbar styles to align with hamburger below */
    .navbar-menu {
        position: fixed;
        top: 60px; /* Adjust to be right below the hamburger icon */
        right: 15px; /* Align with the right side of the hamburger icon */
        width: 150px; /* Reduced width */
        max-height: 600px; /* Allow for dynamic height */
        background-color: #66023c;
        padding: 10px 15px; /* Add some padding */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px; /* Rounded corners */
        transition: max-height 0.3s ease, transform 0.3s ease, opacity 0.3s ease; /* Slide in effect */
        z-index: 1002;
        display: none; /* Hidden by default */
        flex-direction: column; /* Align items vertically */
        margin: 0; /* Ensure no extra margin */
        overflow: hidden; /* Hide overflow initially */
    }

    .navbar-menu.show {
        display: flex; /* Display as flex to show the menu */
        transform: translateY(0); /* Slide in from above */
        opacity: 1; /* Ensure visibility */
    }


    .navbar-items {
        list-style: none; /* Remove bullet points */
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column; /* Align items vertically */
        width: 100%;
    }

    /* Style for each navbar item */
    .navbar-item {
        margin: 0; /* Remove default margin */
        padding: 0; /* Remove padding to control layout */
        text-align: left; /* Align text to the left */
        width: 100%; /* Ensure full width */
        line-height: normal; /* Use normal line-height for proper alignment */
    }

    /* Style for links in navbar */
    .navbar-link, .dropdown-item {
        padding: 10px 0; /* Padding for vertical space */
        display: block; /* Block display to take full width */
        color: #fff;
        text-decoration: none;
        font-size: 1rem; /* Ensure font size consistency */
        width: 100%; /* Ensure full width */
        box-sizing: border-box; /* Include padding in width calculation */
        text-align: left; /* Align text left */
    }

   /* .navbar-link:hover,
    .dropdown-item:hover {
        background-color: #1B7476; /~ Background color on hover ~/
        border-radius: 4px; /~ Rounded corners on hover ~/
    }*/



    .dropdown-menu {
        display: none; /* Hide submenu by default */
        position: relative;
        background-color: #141414;
        margin-top: 5px; /* Spacing from parent menu item */
        list-style: none; /* Remove bullet points */
        padding: 0;
        margin: 0;
        border-radius: 5px; /* Rounded corners for submenu */
        overflow: hidden; /* Hide overflow */
        max-height: 0; /* Hidden by default */
        transition: max-height 0.3s ease; /* Smooth transition for height */
        width: calc(100% - 30px); /* Adjust width to fit with padding */
        box-sizing: border-box; /* Include padding in width */
    }

    .dropdown {
        position: relative; /* Required for absolute positioning */
        width: 100%; /* Ensure full width */
        margin-bottom: 10px; /* Add space below the Register item */
    }

    /* Show dropdown menu when active */
    .dropdown.show .dropdown-menu {
        display: block; /* Show submenu */
        max-height: 200px; /* Expand height when visible */
        margin-top: 5px; /* Consistent spacing from parent */
        margin-left: 15px; /* Maintain indent */
        padding: 10px 0; /* Padding for submenu content */
        min-height: 50px; /* Maintain some minimum height to avoid shrinking */
    }

    /* Style for each dropdown item */
    .dropdown-item {
        color: #fff;
        text-decoration: none;
        padding: 8px 12px;
        display: block;
        font-size: 1rem;
        cursor: pointer;
        line-height: 1.5; /* Consistent line-height */
    }

   /* .dropdown-item:hover {
        background-color: #002040; /~ Background color on hover ~/
        border-radius: 4px; /~ Rounded corners on hover ~/
    }*/

    /* Adjust register item to align */
    .navbar-item {
        margin: 8px 0; /* Space between menu items */
        text-align: left; /* Align text to the left */
        width: 100%; /* Make sure the width is 100% */
    }

    /* About Donors section */
    .donors-container {
        flex-direction: column;
        align-items: center;
    }

    .donor-card {
        width: 100%;
        max-width: 300px;
        margin: 10px 0;
    }

    .donors-description {
        padding: 15px;
        font-size: 14px;
    }

    /* Timeline section */
    .timeline-section {
        padding: 30px 15px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline__event {
        width: calc(100% - 40px);
        margin-left: 20px;
        padding: 15px;
    }

    .timeline__event__icon {
        left: -30px;
        width: 30px;
        height: 30px;
    }

    .timeline__event__content {
        padding: 10px;
    }

    .timeline__event__title {
        font-size: 14px;
    }

    /* Other mobile adjustments */
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1.3rem;
    }

    .section-text,
    .section-list {
        font-size: 0.9rem;
    }

    .theme-card {
        width: 100%;
        max-width: 350px;
    }

    .project-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-left, .footer-right {
        flex: 0 0 100%;
    }

    .footer-right {
        text-align: left;
        margin-top: 1rem;
    }
}

/* Additional adjustments for very small screens */
@media (max-width: 480px) {
    .navbar-logo {
        height: 40px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .donor-image {
        width: 70px;
        height: 70px;
    }

    .timeline__event {
        width: calc(100% - 30px);
        margin-left: 15px;
    }

    .timeline__event__icon {
        left: -25px;
        width: 25px;
        height: 25px;
    }
}

/* Navbar and general styles (keep your existing styles) */
.navbar-items {
    display: flex;
    align-items: center;
}

.navbar-item {
    margin: 0 15px;
    position: relative;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 0;
}

.dropdown-toggle i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #141414;
    min-width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0 0 5px 5px;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    white-space: nowrap;
    text-align: center;
}

.dropdown-item:hover {
    background-color: #003153;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-items {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-item {
        margin: 10px 0;
    }

    .dropdown-menu {
        position: static;
        background-color: transparent;
        box-shadow: none;
        display: none;
        transform: none;
        left: 0;
    }

    .dropdown.show .dropdown-menu {
        display: block;
    }

    .dropdown.show .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-item {
        padding: 10px 0;
        text-align: left;
    }
}

.info-note {
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 3px solid #003153;
}

.info-note p {
    margin-bottom: 10px;
    font-weight: bold;
}

.info-note ol {
    margin-left: 20px;
}

.info-note li {
    margin-bottom: 10px;
}

.faq-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #003153;
    flex-grow: 1;
    padding-right: 20px;
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    color: #003153;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background-color: #f5f5f5;
}

.faq-answer p {
    margin: 0;
    padding: 0 20px;
    line-height: 1.6;
    color: #333;
}

.faq-item.active {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.faq-item.active .faq-question {
    background-color: #e6f3ff;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0 15px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}
