.required {
    color: red;
    font-weight: bold;
}

/* Apply red border only when input is empty on submit */
input.error, textarea.error {
    border: 2px solid red !important;
}

.news-article-photos {    
    display: flex; 
    flex-wrap: wrap; 
    gap: 20px; 
    justify-content: center;
    /*align-items: flex-start;*/
    align-items: stretch; /* important: stretch cards in a row */
}

.news-article-photos-figure {  
    /*flex: 1;
    min-width: 300px;
    max-width: 30%;*/
    flex: 0 0 calc((100% - 40px) / 3); /* 3 columns, 2 gaps */
    max-width: calc((100% - 40px) / 3);
    
    border: 1px solid #ccc;
    padding: 1rem;
    border-radius: 5px;
    background: #f9f9f9;
    transition: box-shadow 0.3s ease;
    
    display: flex;
    flex-direction: column;   /* stack image + caption */
}

.news-article-photos img {
 /*   width: 100%;
    height: 250px;    
    border-radius: 5px;
    margin-bottom: 0px;    */
    
    width: 100%;
    height: 250px;
    object-fit: cover; /* prevents stretching */
    border-radius: 5px;
    display: block;
}

.news-article-photos figcaption {
    /*font-size: 0.9rem;
    color: #555;
    margin-top: 0.5rem;*/
    
    margin-top: 10px;
    font-size: 0.9rem;
    color: #555;
    flex-grow: 1; /* Makes captions stretch evenly */

    
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 0px;    
    padding-right: 0px;    
}

.news-item.active {
    display: block; /* Show active items */
}

.news-item {
    display: none; /* Initially hidden */
    border: 1px solid #ccc;
    padding: 1rem;
    border-radius: 5px;
    background: #f9f9f9;
    transition: box-shadow 0.3s ease;
}

.news-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.news-item h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.news-item .date {
    font-size: 0.9rem;
    color: #6c757d;    
}

.news-item .summary {
    font-size: 1rem;    
}

.news-item .summary a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.news-item .summary a:hover {
    text-decoration: underline;
}

/* Sidebar Styles */
.news-sidebar {
    margin-top: 2rem;
 
}

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

.news-sidebar ul {
    list-style: none;
    padding: 0;
}

.news-sidebar ul li {
    margin-bottom: 0.5rem;
}

.news-sidebar ul li a {
    text-decoration: none;
    color: #007BFF;
}

.news-sidebar ul li a:hover {
    text-decoration: underline;
}

.news-sidebar form {
    margin-top: 1.5rem;
}

news-sidebar form input[type="text"] {
    width: calc(100% - 2.5rem);
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.news-sidebar form button {
    background-color: #0070ba;
    color: white;
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;

    /* Use flex to ensure consistent alignment */
    justify-content: center;
    align-items: center;    
    text-decoration: none;
    transition: background-color 0.3s;                
}

.news-sidebar form button:hover {
    background-color: #0056b3;
}

.mobile-menu-language-selector {
    margin-top: 15px;
    margin-left: 20px;
    /* Aligns the select element to the right */
    float: left;
}

.main-nav-menu-separator {
    width: 1px;
    /* Thin vertical line */
    background-color: #6a6666;
    /* Line color */
    margin: 0 0px;
    /* Space around the separator */
    align-self: stretch;
    /* Stretches to parent height */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

a[data-i18n="nav.donate"] {
    margin-right: 0;
}

.hamburger-menu-header {
    display: flex;
    /* Align items in a row */
    justify-content: space-between;
    /* Space between logo and close button */
    align-items: center;
    /* Vertically center the items */
    padding: 1rem;
    /* Add padding around the header */
    border-bottom: 1px solid #ddd;
    /* Separator line below the header */
    background-color: #f9f9f9;
    /* Light background for header */
}

/* Styles for the logo */
.hamburger-menu-logo {
    height: 40px;
    /* Set logo height */
    max-width: 80%;
    /* Prevent logo from being too wide */
    object-fit: contain;
    /* Keep the aspect ratio */
}

/* Styles for the close button */
.hamburger-close-menu {
    background: none;
    /* Remove default button styles */
    border: none;
    /* Remove border */
    font-size: 2.5rem;
    /* Make the icon large and visible */
    color: #333;
    /* Set color for the close icon */
    cursor: pointer;
    /* Change cursor to pointer on hover */
    line-height: 1;
    /* Ensure proper spacing for the button 
    padding: 0.5rem;*/
    /* Add padding for better clickability */
    transition: color 0.3s ease;
    /* Smooth color transition on hover */    
}

.close-menu:hover {
    color: #ff0000;
    /* Highlight close button on hover */
}

.main-nav-menu {
    list-style: none;
    display: flex;
}

.main-nav-menu li {
    display: inline;
}

.main-nav-menu a {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.main-nav-menu a:hover {
    background-color: #ddd;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    width: 30px;
    cursor: pointer;
}

.hamburger-menu span {
    margin-left: 0px;
    display: block;
    background-color: #333;
    height: 3px;
    width: 100%;
    border-radius: 2px;
}

.mobile-menu-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    /*padding: 20px;*/
}

.mobile-menu-popup.active {
    display: block;
    transform: translateX(0);
}

.mobile-menu-popup ul {
    list-style: none;
    padding: 0;
}

.mobile-menu-popup li {
    margin: 10px 0;
}

.mobile-menu-popup a {
    text-decoration: none;
    color: #333;
    padding: 10px;
    display: block;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.mobile-menu-popup a:hover {
    background-color: #ddd;
}

.faq-item {
    margin-bottom: 1em;
    text-align: left;
    /* Force left alignment */
}

.faq-question {
    cursor: pointer;
    font-weight: bold;
    background-color: #f2f2f2;
    padding: 0.5em;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #5c7deb;
}

.faq-question .icon {
    font-size: 1.2em;
    margin-left: 10px;
}

.faq-answer {
    display: none;
    margin-top: 0.5em;
    padding: 0.5em;
    border-left: 3px solid #007BFF;
    background-color: #f9f9f9;    
}

.faq-question.active+.faq-answer {
    display: block;
}

.faq-question.active .icon {
    transform: rotate(45deg);
}

.faqs-container {
    /*color: #5c7deb;*/
    text-decoration: none;
}


input,
textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.email-link {
    white-space: nowrap;
    /* Prevent wrapping for larger screens */
}

.send-message-button {
    background-color: #0070ba;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;

    /* Use flex to ensure consistent alignment */
    justify-content: center;
    align-items: center;    
    text-decoration: none;
    transition: background-color 0.3s;      
}

.privacy-policy-container {
    /*display: flex;
    flex-wrap: wrap;
    gap: 20px;*/
    text-align: justify;
}

/* Button container */
.button-container {
    display: flex;
    justify-content: left;
    gap: 10px;
    /* Space between buttons */
    margin-top: 15px;
    flex-wrap: wrap;
    /* Allows wrapping on smaller screens */
}

#page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    padding-left: 37px;
    padding-bottom: 30px;
    padding-top: 0px;
}

.donate-button {
    background-color: #0070ba;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    display: flex;
    cursor: pointer;
    font-size: 16px;

    /* Use flex to ensure consistent alignment */
    justify-content: center;
    align-items: center;    
    text-decoration: none;
    transition: background-color 0.3s;
    /* Fixed width for both buttons */
    width: 175px;    
}

.donate-button:hover {
    background-color: #005b9a;
}

/* Zelle details section */
.zelle-details {
    /*margin-top: 20px;*/
    text-align: left;
    display: none;
    background-color: #fff;
    /*padding: 15px;*/
    /*border-radius: 8px;*/
    /*border: 1px solid #ddd;*/
}

.zelle-details p {
    margin-bottom: 10px;
}

/* QR Code inline styling */
.qr-code-inline {
    display: inline-block;
    margin-left: 10px;
    /* Space between text and QR code */
    vertical-align: top;
    /* Align the image to the top of the text */
    width: 135px;
    height: 135px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.qr-code {
    text-align: center;
    margin-top: 20px;
}

.qr-code img {
    max-width: 200px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.projects {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.project {
    flex: 1;
    min-width: 300px;
    max-width: 30%;
    text-align: justify;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bullet-list {
    list-style-type: square;
    padding-left: 15px;
    margin-left: 0;
}

.project-image {
    width: 35px;
    height: 205px;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 0px;
}

.why-raise-heart-bullet-list {
    list-style-type: square;
    padding-left: 15px;
    margin-left: 0;
}

.future-two-column-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns */
    gap: 20px;
    /* Space between items */
    padding: 0;
    /* padding-left: 15px; */
    margin: 0;
}

.future-project-details {
    background-color: #f9f9f9;
    /* Light background for separation */
    padding: 15px;
    border: 1px solid #ddd;
    /* Optional: Add a border */
    border-radius: 8px;
    /* Rounded corners */
    text-align: left;
}

li {
    margin: 10px 0;
}


.future-project-bullet-list {
    list-style-type: square;
    padding: 0;
    margin-left: 15px;
}

header {
    background-color: #ffffff;
    padding: 20px;
    width: 100%;
    /* text-align: center;*/
    box-sizing: border-box;
    /* Reduce header height by 20% */
    height: calc(100% - 20%);
}

header nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.header-container {
    display: flex;
    /* Enables flexbox layout */
    justify-content: space-between;
    /* Aligns h1 on the left, select on the right */
    align-items: center;
    /* Vertically aligns h1 and select */
    padding: 10px;
    /* Adds some padding around the header */
    background-color: #f1f1f1;
    /* Optional: Adds a background color to the header */

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px; /* Explicitly set the height to prevent expansion */    
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.header-container h1 {
    margin: 0;
    /* Removes default margin for h1 */
    font-size: 32px;
    text-align: left;
    color: #1A237E;
}

#language-selector {
    margin-left: 10px;
    /*margin: 0; */
    /* Removes default margins */
    /* Aligns the select element to the right */
    float: right;
}


nav {
    display: flex;
    justify-content: center;
    background-color: #f1f1f1;
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Ensure consistent navigation highlighting */
nav a.active {
    background-color: #1A237E;
    color: white;
    display: inline-block;
    /* Highlight only around the text */
    padding: 5px 15px;
    border-radius: 5px;
    text-align: center;
    width: auto;
    /* Prevent full-width highlighting */
    box-sizing: border-box;
}

nav a:hover {
    background-color: #1A237E;
    color: white;
}

.punch-statement {
    background-color: #1A237E;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-header {
    margin-bottom: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #4caf50;
}

.page-sub-header {
    margin-bottom: 30px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #0e4710;
}


/* Ensure no gaps for large screens */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-y: scroll;
    /* Ensures a scrollbar is always present */
}

/* Remove any unwanted padding or margins that could cause overflow */
.container {
    padding: 0 15px;
    /* Add safe padding within the container */
    margin: 0 auto;
    /* Center the container */
    max-width: 100%;
    /* Prevent the container from exceeding the viewport width */
}


h2 {
    color: #1A237E;
    font-size: 24px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f9f9f9;
    padding-bottom: 5px;
}

h3 {
    color: #1A237E;
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f9f9f9;
    padding-bottom: 5px;
}

h4 {
    color: #1A237E;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f9f9f9;
    padding-bottom: 5px;
}

h5 {
    color: #1A237E;
    font-size: 16px;
    margin-top: 0px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f9f9f9;
    padding-bottom: 5px;
}

h6 {
    color: #1A237E;
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f9f9f9;
    padding-bottom: 5px;
    text-align: left;    
}

.content {
    max-width: 1200px;
    margin: 30px auto;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-top: 0px;
    text-align: center;
    min-height: 500px;
    /* Ensure all pages have the same height */
    box-sizing: border-box;
}

.privacy_policy {
    color: #5c7deb;
    text-decoration: none;
}

.terms_of_service {
    color: #5c7deb;
    text-decoration: none;
}

.faqs {
    color: #5c7deb;
    text-decoration: none;
}

.index-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about-us-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 0px;
}

.about-us-icon {
    width: 45px;
    height: 45px;
    vertical-align: middle;
    margin-right: 10px;
}

.welcome-image-container {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.welcome-image {
    flex: 1;
    border-radius: 10px;
    width: 550px;
    height: 430px;
}

.welcomewhy {
    flex: 1;
    min-width: 300px;
    text-align: left;
    text-align: justify;
}

.our-story {
    flex: 1;
    min-width: 300px;
    text-align: justify;
    padding-right: 10px;
    padding-left: 10px;    
}

.vision {
    flex: 1;
    min-width: 300px;
    text-align: justify;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 5px;
    /*style="margin-bottom: 20px;"*/
}

.mission {
    flex: 1;
    min-width: 300px;
    text-align: justify;
    padding-right: 10px;
    padding-left: 10px;
    /*
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);   
    */
}

.team-member {
    flex: 1;
    min-width: 300px;
    max-width: 45%;
    text-align: justify;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
}

img.round {
    border-radius: 50%;
    /* Make images round */
    width: 150px;
    /* Ensure consistent size for all round images */
    height: 150px;
    /* Ensure consistent size for all round images */
    object-fit: cover;
    /* Ensure the image fits well */
    margin-bottom: 15px;
}

.get-involved-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.get-involved-section {
    flex: 1;
    min-width: 300px;
    max-width: 30%;
    text-align: justify;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;

    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;    
}

.get-involved-section-icon {
    width: 45px;
    height: 45px;
    vertical-align: middle;
    margin-right: 10px;
}

.get-involved-section-image {
    height: 250px;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 0px;
}

.donate-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}

.donate-section {
    flex: 1;
    min-width: 300px;
    max-width: 45%;
    text-align: left;
    background: #fff;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.donate-section h2 {
    color: #1A237E;
    font-size: 24px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f9f9f9;
    padding-bottom: 5px;
}

.donate-section ul {
    padding-left: 0;
}

.donate-section ul li {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.donate-section ul li span {
    font-size: 16px;
    margin-right: 10px;
}

.donate-fund-icon {
    width: 45px;
    height: 45px;
    vertical-align: middle;
    margin-right: 10px;
}

.donate-items-icon {
    width: 45px;
    height: 45px;
    vertical-align: middle;
    margin-right: 10px;
}

.donate-section ul li {
    display: flex;
    /* Align items horizontally */
    align-items: flex-start;
    /* Align items to the top */
    gap: 5px;
    /* Optional: Adds space between the icon and text */
}

.donate-section ul li span {
    display: inline-block;
    /*line-height: 1.5;  Adjusts spacing for better readability */
}

.contact-us-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 10px;
}

.contact-us-clickable-text {
    color: blue;
    text-decoration: underline;
}

.contact-us-message-icon {
    width: 45px;
    height: 45px;
    vertical-align: middle;
    margin-right: 10px;
}

.contact-us-us-flag {
    width: 45px;
    height: 45px;
    vertical-align: middle;
    margin-right: 10px;
}

.contact-us-sl-flag {
    width: 30px;
    height: 20px;
    vertical-align: middle;
    margin-right: 10px;
}

.contact-us-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}

.send-message {
    flex: 1;
    min-width: 300px;
    max-width: 45%;
    text-align: left;
    background: #fff;
    padding-right: 20px;
    padding-bottom: 28px;
    padding-left: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.country-contact-us-container {
    flex: 1;
    min-width: 300px;
    max-width: 45%;
    text-align: left;
}

.country-contact-us {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-top: 20px;
}

.paypal-button {
    display: inline-block;
    background-color: #0070ba;
    color: white;
    padding: 15px 30px;
    text-align: center;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
}

.paypal-button:hover {
    background-color: #005693;
}


/* Fix for horizontal scrolling issue */
/* Ensure that the body and HTML elements do not overflow horizontally */
html,
body {
    overflow-x: hidden;
    /* Disables horizontal scrolling */
    box-sizing: border-box;
    /* Ensures padding and border are included in width calculations */
}

/* Apply box-sizing to all elements for consistent sizing calculations */
*,
*::before,
*::after {
    box-sizing: inherit;
    /* Inherit box-sizing property from parent elements */
}

/* Restrict media such as images, videos, and iframes from exceeding their container's width */
img,
video,
iframe {
    max-width: 100%;
    /* Ensures media adjusts to fit within the container */
    height: auto;
    /* Maintains aspect ratio */
}

/* Styling for the logo and its container */
.logo-container {
    display: flex;
    align-items: center;
    /* Adjust spacing between the logo and the text */
    gap: 10px;
    flex-direction: row;
}

.website-logo {
    order: 1;
    /* Default order for the logo */
    width: 60px;
    /* Adjust width as necessary */
    height: auto;
}

.logo-title {
    text-align: left;
    /* Default alignment for larger screens */
    order: 2;
    /* Default order for the title */
}

footer {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #333;
    color: white;
    margin-top: 20px;
    box-sizing: border-box;
    font-size: 14px;
    /* Default padding for all devices */
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 10px;
    padding-right: 10px;
}

footer a {
    color: #1A237E;
    text-decoration: none;
}

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

.footer-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer-left {

    display: inline-flex;
    /* Use inline-flex to allow centering the container as a whole */
    align-items: center;
    /* Vertically center both sections */
    justify-content: center;
    /* Center the combined content horizontally */
    gap: 10px;
    /* Add spacing between the two sections */
    margin: 0 auto;
    /* Horizontally center the footer-left container */

}

.footer-left-section1 {
    flex: 0;
    /* Prevent the section from stretching */
}

.footer-left-section2 {
    flex: 0;
    /* Prevent the section from stretching */
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}

.footer-right img {
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
}

/* Responsive Design */
/* Mobile Phones (up to 576px) */
@media (max-width: 576px) {    

    .news-item{
        font-size: 15px;
    }

    #page-links {
        padding-left: 6px;
        font-size: 20px;
    }
    
     .donate-section{
        max-width: 95%;    
    }

    .send-message{
        max-width: 95%;    
    }

    .country-contact-us-container {
        max-width: 95%;    
    }

    .project {
        max-width: 95%;    
    }
    .get-involved-section {
        max-width: 95%;    
    }
    
    .news-article-photos {
        gap: 15px;
    }

    .news-article-photos-figure {
        flex: 0 0 95%;
        max-width: 95%;
    }

    .news-article-photos img {
        height: auto;
    }

    .team-member {
        max-width: 95%;     
    }

    .logo-container {
        align-items: center;
        /* Center-align content horizontally */
        justify-content: center;
        /* Center-align content vertically */
        text-align: center;
        /* Center the content within the container */        
    }

    .logo-title {
        text-align: center;
        /* Ensure the title is centered */
        margin: 10px 0;
        /* Add spacing around the title */
        order: 1;
        /* Move the title above the logo */
    }

    .website-logo {
        width: 60px;
        margin-bottom: 10px;
        /* Add spacing between the logo and the title */
        order: 2;
        /* Move the logo below the title */
    }

    .welcome-image {
        width: 350px;
        height: 250px;
    }

    .about-us-container {
        gap: 0px;
        margin-top: 0px;
        padding-top: 0px;
    }

    .mobile-menu-popup a {
        font-size: 17px;
    }

    .main-nav-menu-separator {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    #footer-left-section1 .separator {
        display: none;
    }

    .header-container {
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 0px;        
        height:70px /* Explicitly set the height to prevent expansion */   
    }

    body {
        font-size: 15px;
        /* Smaller font size for readability */
        padding: 10px;
        /* Reduce padding for smaller screens */
    }

    .container {
        padding: 5px;
        /* Tighten the container's padding */
    }

    /*
    nav {
        display: flex;
        flex-direction: column;
       Stack navigation for small screens 
        text-align: left;
    }
    */

    .future-two-column-list {
        grid-template-columns: 1fr;
        /* Single column on smaller screens */
    }

    .button-container {
        flex-direction: column;
        /* Stack buttons vertically on smaller screens */
    }

    .donate-button {
        width: 60%;
        /* Full width on smaller screens */
        max-width: 300px;
        /* Limit the maximum width */
    }

    .qr-code-inline {
        display: block;
        /* Makes QR code appear below the text */
        margin-left: 0;
        /* Removes left margin for better alignment */
        margin-top: 10px;
        /* Adds space between the text and QR code */
    }

    footer {
        /*padding-bottom: 15px;*/
        padding: 15px 10px;
        /* Add padding around the footer */
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        /* Stack the rows vertically */
        align-items: center;
        /* Center align all rows horizontally */
        /* Equal spacing between all rows. Changed from 7 to 10 */
        gap: 10px;

    }

    .footer-left {
        display: flex;
        flex-direction: column;
        /* Stack the two sections vertically */
        /* Changed from 7 to 10 */
        gap: 10px;
        /* Equal spacing between all rows */
        font-size: 14px;
    }

    .footer-left-section1,
    .footer-left-section2,
    .footer-right {
        margin: 0;
        /* Reset vertical margins */
        padding: 0;
        /* Reset vertical padding */
    }

    .footer-right {
        display: flex;
        /* Use flexbox for alignment */
        justify-content: center;
        /* Horizontally center the entire content as one unit */
        align-items: center;
        /* Vertically center the entire content as one unit */
        /* added */
        gap: 10px;
    }

    .footer-right img {
        width: 23px;
        /* Adjust width for mobile */
        height: 23px;
        /* Adjust height for mobile */
    }

    .faq-question {
        font-size: 19px;
    }

    .faq-answer {        
        text-align: justify;    
        font-size: 14px;
    }

    .privacy-policy-container{
        font-size: 14px;
    }

    /*
    .welcomewhy {
        font-size: 20px;
    }
    */

    .vision {
        padding-top: 22px;
        /*style="margin-bottom: 20px;"*/
    }
}

/* Tablets (576px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {

    .main-nav-menu-separator {
        display: none;
    }

    .main-nav-menu {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .email-link {
        white-space: normal;
        /* Allow wrapping on smaller screens */
    }
    
    body {
        /* font-size: 16px; Slightly larger font size */
        font-size: 15px;
    }

    .container {
        max-width: 720px;
        /* Limit the container width */
    }

    nav {
        justify-content: space-between;
    }

    .future-two-column-list {
        grid-template-columns: 1fr;
        /* Single column on smaller screens */
    }

    footer {
        /*padding-bottom: 15px;*/
        padding: 15px 10px;
        /* Add padding around the footer */
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        /* Stack the rows vertically */
        align-items: center;
        /* Center align all rows horizontally */
        gap: 7px;
        /* Equal spacing between all rows */
    }

    .footer-left {
        display: flex;
        flex-direction: column;
        /* Stack the two sections vertically */
        gap: 7px;
        /* Equal spacing between all rows */
    }

    .footer-left-section1,
    .footer-left-section2,
    .footer-right {
        margin: 0;
        /* Reset vertical margins */
        padding: 0;
        /* Reset vertical padding */
    }

    .footer-right {
        display: flex;
        /* Use flexbox for alignment */
        justify-content: center;
        /* Horizontally center the entire content as one unit */
        align-items: center;
        /* Vertically center the entire content as one unit */
    }

    .news-article-photos-figure {
        flex: 0 0 calc((100% - 20px) / 2); /* 2 columns */
        max-width: calc((100% - 20px) / 2);
    }

    .news-article-photos img {
        height: 220px;
    }
}

/* Laptops (769px to 1200px) */
@media (min-width: 769px) and (max-width: 1200px) {
    body {
        /* font-size: 18px;  Adjust font size for readability */
        font-size: 15px;
    }

    .container {
        max-width: 960px;
        /* Limit container for laptop screens */
    }

    .news-article-photos img {
        height: 240px;
    }
}

/* Desktop Monitors (1201px to 1600px) */
@media (min-width: 1201px) and (max-width: 1600px) {
    body {
        /* font-size: 20px; /* Larger font for readability on bigger screens */
        font-size: 16px;
    }

    .container {
        max-width: 1140px;
        /* Center content on large screens */
    }

    .news-article-photos img {
        height: 260px;
    }
}

/* Large Monitors (above 1600px) */
@media (min-width: 1601px) {
    body {
        font-size: 22px;
        /* Extra-large font size for high-res monitors */
    }

    .container {
        max-width: 1440px;
        /* Keep content centered and avoid excessive stretching */
    }

    .news-article-photos img {
        height: 270px;
    }
}