/* Base styles for the page */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.content-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #333;
}

.terms-section {
    margin-bottom: 20px;
}

h2 {
    color: #007bff;
    font-size: 1.5em;
}

p {
    line-height: 1.6;
    color: #555;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


header {
    /* border: 2px solid; */
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 2;
}
header nav {
    /* border: 2px solid green; */
    background: linear-gradient(to left, rgb(0, 60, 128), rgb(0, 101, 216), rgb(0, 204, 255));
    padding: 1% 3% 1% 1%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 7vh;
}
header nav img {
    width: 9%;
    min-width: 75px;
    filter: drop-shadow(2px 2px black);
}
header nav img:hover {
    cursor: pointer;
}
header nav div {
    /* border: 2px solid; */
    min-width: 50%;
    display: flex;
    justify-content: flex-end;
} 
header nav div button:nth-child(1) {
    background: transparent;
    border: none;
    margin-right: 4%;
    color: rgb(171, 241, 171);
    font-size: /*clamp(0.5rem, 4vw, 1.2rem)*/3.1vmin;
    font-weight: bold;
    text-decoration: underline;
}
header nav div button:nth-child(2) {
    border: none;
    padding: 1vmax 2.35vmax;
    border-radius: 1vw;
    font-size: /*clamp(0.5rem, 4vw, 1.2rem)*/ 3.1vmin;
    background: linear-gradient(to right,rgb(29, 122, 1), rgb(58, 245, 2));
    color: white;
    font-weight: bold;
    text-shadow: 0.1vw 0.1vw black;
    box-shadow: 00.1vw 0.1vw black;
}
header nav div button:hover {
    cursor: pointer;
}


/* Footer Styles */
.site-footer * {
    color: #ffffff;
}
.site-footer {
    background-color: #1a2938;
    padding: 20px;
    font-family: Arial, sans-serif;
    z-index: 3 !important;
    margin-top: 25vmin;
}
.site-footer img[alt="logoSite"] {
    width: 25vmin;
    min-width: 150px;
    height: 8vmax; min-height: 95px;
    filter: contrast(1.5) drop-shadow(0.65vmin 0.65vmin black);
    margin-right: 3%;
    margin-top: 4%;
    margin-bottom: 4%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 5%;
}

.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 200px;
    padding-top: 2%;
}

div[class="footer-section links"] {
    margin-left: 2%;
}

.footer-section h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 1em;
    line-height: 1.5;
}

.footer-section a {
    color: #007bff;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    font-size: 2em;
    margin-right: 10px;
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    font-size: 0.9em;
}