/* Reset default browser styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #FFFFFF; 
    color: #000000; 
    padding-bottom: 0;
    margin: 0;
    z-index: 999;
    right: 0;
    left: 0;
    top:0;
    display: flex;
    max-height: 80px;
    justify-content: space-between;
    align-items: center;
    position: fixed;
}

.header-content {
    display: flex;
    text-decoration: none;
    justify-content: space-between; /* Aligns items to the start and end of the container */
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    text-decoration-line: none;
    text-decoration-color: black;
}

main {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    padding-top: 60px;
}

img {
    width: 100%;
	max-width: 100%;
	height: auto;
    vertical-align: middle;
}

a:link { 
  text-decoration: none;
    color: #000000;
}
a:visited { 
  text-decoration: none; 
} 
a:hover { 
  text-decoration: none;
    color: #006aff;
} 
a:active { 
  text-decoration: none; 
}

ul li {
    text-decoration: none;
    display: block;
    margin-top: 6px;
    
}
.logo img {
    max-width: 240px;
    height: auto;

}

.logo2 {
    display: flex; /* Use flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    padding: 0;
    margin: 0;

}

.logo2 img{
    max-width: 256px;
    height: auto;
}

.donate {
    display: flex; /* Use flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    margin: 0;
}
.style-nav li a {
    display: inline-block;
    padding: 6px 16px;
    text-decoration: none;
    color: #000000;
    justify-content: flex-end;
    text-decoration-line: none;
    text-decoration-color: black;
}

.mail img{
    width: auto;
    height: 20px;
    padding: 0 0 0 20px;
}

/* Update the styles for the footer and dropdowns */
footer {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    background-color: #FFFFFF;
    color: #000000;
    padding: 8px;
    margin: 10px;
    text-align: center;
}

/* Row and column layout */
.row {
    display: flex;
    flex-wrap: wrap;
    padding: 12px 0 0 12px;
}

/* Styles for columns in the top row */
.top-row > div {
    flex: 50%; /* Each column takes up 50% of the row */
    padding: 0 4px;
    margin-top: 12px;
    background-color: rgba(255,255,255,0.92);
}

/* Styles for columns in the third row */
.third-row > div {
    flex: 33.33%; /* Each column takes up about one-third of the row */
    padding: 0 10px;
    margin-top: 16px;
    background-color: rgba(255,255,255,0.92);
}

.other-row > div {
    flex: 25%;
    padding: 4px;
    margin-top: 8px;
    background-color: rgba(255,255,255,0.92);
}

/* Column content */
.top-row > div, .third-row > div, .other-row > div {
    padding: 20px;
    margin-top: 12px;
}

/* Footer styles */
.footer {
    background-color: #FFFFFF;
    color: #000000;
    padding: 15px;
    text-align: center;
    margin-top: 12px;
}

/* Responsive layout for smaller screens */
@media screen and (max-width: 600px) {    
    .top-row > div, .third-row > div, .other-row div {
        flex: 100%; /* Each column takes up the full width of the row on small screens */
        margin-top: 2px;
    }

    .header-content {
        flex-direction: column;
        justify-content: space-between;
    }
    
    .style-nav {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .button {
    display: inline-block;
    font-size: 15px; 
    line-height: 36px; 
    height: 36px; 
    color: #ffffff; 
    min-width: 156px;
    background-color: #006aff; 
    text-align: center; 
    box-shadow: 0 0 0 1px;
    border-radius: 4px;
    text-decoration-style: solid;
}

}

@media screen and (min-width: 601px) and (max-width: 1024px) {
    /* Adjust header font size and spacing */
    .header h1 {
        font-size: 24px; /* Adjust font size for tablets */
    }

    /* Adjust layout for top-row and third-row if necessary */
    .top-row > div, .third-row > div, .other-row > div {
        flex: 50%; /* For example, show two columns instead of one or three */
    }
}

