body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    padding-bottom: 50px;
    color: #e0e0e0; /* Slightly lighter text color */
    background-color: #ffffff; /* Slightly lighter background */
}

header {
    background-color: #003366; /* Slightly lighter dark blue */
    color: #fff;
    padding: 30px;
    text-align: center;
    display: flex;
}

#logo {
    width: 200px;
    height: auto;
    justify-content: flex-start;
}

.navbar {
    background-color: #003366; /* Slightly lighter dark blue */
    padding: 15px 20px;
    justify-content: flex-end;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
}

.nav-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu > li {
    position: relative;
    margin-left: 20px;
}

.nav-menu > li:last-child {
    margin-right: 0;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu .dropbtn:hover {
    background-color: #3399ff; /* Brighter hover color */
    color: #fff; /* Ensure text is readable */
    border-radius: 5px;
}

/* Dropdown Styling */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333; /* Slightly lighter background */
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Slightly more pronounced shadow */
    z-index: 1;
    border-radius: 5px;
    animation: dropdown-animation 0.3s ease-out forwards;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #555; /* Slightly lighter hover color */
}

/* Show Dropdown Menu on Hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Search Bar */
.search-bar input {
    padding: 10px; /* Increased padding for a better look */
    border-radius: 5px;
    border: 1px solid #555; /* Slight border for definition */
    outline: none;
    background-color: #222; /* Slightly lighter background */
    color: #fff; /* Text color for better readability */
}

/* Theme Toggle */
.theme-toggle button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Dropdown Animation */
@keyframes dropdown-animation {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

main {
    background-color: #ffffff; /* Slightly lighter background for main content */
    margin: 40px;
    padding: 0 0 40px 0;
    color: #333;
    line-height: 1.7em;
}

.hero{
    margin: 0;
    padding-top: 40px;
    padding-bottom: 60px;
    background-image: url(images/pexels-creationsbyfaik-1025469.jpg);
    background-size: cover;
}

.hero h1 {
    font-size: 80px;
    margin: 60px;
    color: orange;
}

.hero h2 {
    font-size: 30px;
    margin: 60px;
    color: #ffffff;
}

.hero p {
    font-size: 20px;
    margin: 60px;
    color: #ffffff; 
}

.hero a {
    text-decoration: none;
    color: #ffffff;
}

#support-button {
    padding: 0px;
    margin: 0;
    display: flex;
}

.video-container {
            width: fit-content; /* Adjust container to the video size */
            margin: 20px auto; /* Center the video horizontally */
            padding: 10px; /* Space between video and border */
            border: 2px solid #ccc; /* Border around the video */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Drop shadow */
        }


.site-purpose {
    color: #333;
    text-align: center;
    font-style: italic;
    line-height: 25px;
    padding: 40px;
}

.site-purpose h3 {
    font-size: 30px;
    font-weight: bold;
}

button {
    background-color: orange;
    border: #ffffff;
    border-radius: 5px;
    font-size: 20px;
    text-decoration: none;
    padding: 10px;
    margin: 60px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
}

button:hover, button:focus, button:active {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);

}

.container {
    color: #333;
    box-sizing: border-box;
    border-radius: 5px;
    background-color: lightgray;
    margin: 2rem 6rem;
    padding: 2rem;

}

#finance-start {
    text-align: center;
    font-style: italic;
}

#finance-start2 {
    text-align: center;
}

.welcome {
    padding: 60px;
    background-color: #e0e0e0;
    border-radius: 20px;
    color: #333;
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 30px;
}

.vision {
    margin: 20px;
    padding: 0px;
    background-color: ivory;
    border: 3px solid darkgrey;
    border-radius: 20px;
    display: flex;
}

.vision img {
    width: 300px;
    height:300px;
    margin: auto 30px;
}

#vision-text {
    color: #333;
    background-color: #e0e0e0;
    border: 3px solid #333;
    margin: 50px 50px 50px 20px;
    border-radius: 20px;
    padding: 10px 50px;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
}

#vision-text h3 {
    font-size: 30px;
    font: bold;
}

#vision-text a {
    color: darkorange;
    text-decoration: none;
}

.name-origin {
    background-color: lightgray;
    border: 3px solid darkgrey;
    border-radius: 20px;
    display: flex;
    padding: 0;
    margin: 20px;
}

.name-origin img {
    width: 300px;
    height: 300px;
    margin: auto 30px;
}

#origin-text {
    color: #333;
    background-color: ivory;
    border: 3px solid #333;
    margin: 50px 20px 50px 50px;
    border-radius: 20px;
    padding: 20px;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
}

#origin-text h3 {
    font-size: 30px;
    font: bold;
}

#origin-text a {
    color: darkorange;
}

.user-guidance {
    padding: 30px;
    color: #333;
    line-height: 30px;
    text-align: left;
}

.user-guidance h3 {
    font-size: 24px;
}

.future {
    display: flex;
    color: #333;
    background-color: #e0e0e0;
    line-height: 25px;
    text-align: center;
    margin: 0;
    padding: 0;
    border-radius: 20px;
    box-shadow: 3px 3px 8px #333 ;
}

.future h3 {
    font-size: 24px;
}

#scope {
    border: 1px solid #333;
    border-radius: 10px;
    margin: 30px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 3px 3px 8px #333 ;
}

#roadmap {
    border: 1px solid #333;
    border-radius: 10px;
    margin: 30px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 3px 3px 8px #333 ;
}

.stakeholders {
    display: flex;
    margin: 40px auto;
    padding: 20px;
    width: 80vw;
    height: auto;
    border: 2px solid;
    border-radius: 20px;
    color: #333;
}

.stakeholders img {
    margin: auto;
    width: 300px;
    height: 300px;
}

.partner {
    text-align: center;padding: 50px;
}

.shaping {
    color: #333;
    padding: 20px;
    background-color: antiquewhite;
}

.about {
    color: #333;
    padding: 60px;
}

.about{
    margin: 0;
    padding-top: 40px;
    padding-bottom: 60px;
    background-image: url(images/pexels-creationsbyfaik-1025469.jpg);
    background-size: cover;
}

#financial-header {
    background-image: url(images/financial-bg.jpg);
    height: 30vh;
    background-size: cover;
    background-position-y: -500px;
    display: flex
}

#financial-header h1 {
    text-shadow: 3rem #333 ;
    font-size: 6rem;
    margin: 5rem;
    padding: 2rem;
    color: darkred;
    align-items: center;
}

.links {
    color: #00ffff; /* Brighter link color */
    text-decoration-line: none;
}

.cta-button {
    display: inline-block;
    background-color: #3399ff; /* Brighter button color */
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2673e0; /* Slightly darker hover color */
}

footer {
    background-color: #003366; /* Slightly lighter dark blue */
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* General Media Queries for Tablets and Phones */
@media (max-width: 1024px) {
    .vision, .name-origin, .future {
        flex-direction: column;
    }

    .vision img, .name-origin img {
        width: 100%;
    }

    .vision img, .name-origin img, #vision-text, #origin-text {
        margin: 0;
        padding: 20px;
    }

    #vision-text, #origin-text {
        border-radius: 0;
    }

    .site-purpose h3, .welcome, .user-guidance, .future h3 {
        font-size: 18px;
        text-align: center;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-button {
        width: 100%;
    }

    .navbar {
        flex-direction: column;
    }

    .nav-menu {
        flex-direction: column;
    }

    .navbar a {
        font-size: 18px;
        padding: 10px;
    }
}

/* Specific Media Queries for Phones */
@media (max-width: 768px) {

    header {
        flex-direction: column-reverse;
    }

    #logo {

    }

    .navbar {
    }

    .nav-menu {
    }

    .vision, .name-origin, .future {
    }

    .vision img, .name-origin img {
        width: 100%;
    }

    .vision img, .name-origin img, #vision-text, #origin-text {
        margin: 0;
        padding: 20px;
    }

    #vision-text, #origin-text {
        border-radius: 0;
    }

    .site-purpose h3, .welcome, .user-guidance, .future h3 {
        font-size: 18px;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero h2 {
        font-size: 22px;
    }

    .hero p {
        font-size: 14px;
    }

    .vision {
        flex-direction: column;
        border: none;
        padding: 20px;
        box-shadow: 3px 3px 8px #333 ;
    }

    .vision img {
        width: 300px;
        height: auto;
        margin: auto;
    }

    #vision-text {
        border-radius: 5px;
        border: none;
        box-shadow: 3px 3px 8px #333 ;
    }

    .name-origin {
        flex-direction: column;
        border: none;
        padding: 20px;
        box-shadow: 3px 3px 8px #333 ;
    }

    .name-origin img {
        width: 300px;
        height: 300px;
        margin: auto;
    }

    #origin-text {
        border-radius: 5px;
        border: none;
        box-shadow: 3px 3px 8px #333 ;
    }

    .future {
        margin-bottom: 80px;
    }

    .stakeholders {
        flex-direction: column;
        border: none;
        padding: 20px;
    }

    .stakeholders img {
        margin-bottom: 0;
        height: auto;
        margin: auto;
    }

    .partner {
        margin-top: 0;

    }

    .shaping {
        text-align: center;
    }

    .cta-button {
        width: 100%;
    }

    .navbar a {
        font-size: 16px;
        padding: 8px;
    }
}

