/* General Body and Section Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
     background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: #333;
}

/* Header Styling */
header {
     background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: #fff;
    padding: 5px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Scrollbar Styling */
body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background: #15915b;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Social Media Links */
.social-media-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 10%;
    padding: 5px;
}

h2 {
    font-family: Arial, sans-serif;
    color: white;
}

/* Navigation Styling */
.social-media-icons {
    display: flex;
    align-items: center; 
    margin-left: 10px; 
}

.social-media-icons a {
    text-decoration: none; 
    color: white; 
    font-weight: bold; 
    font-family: 'Open Sans', sans-serif; 
    font-style: italic; 
}

.social-media-icons a:hover h2 {
    animation: shake 0.5s forwards; 
}

.logo-container {

    display: flex;
    align-items: center;
    margin-right: 50px;
    margin-left: 40px;
    /* Add some margin to separate the logo from the nav */
    flex-shrink: 0;
    /* Prevent it from shrinking on small screens */
}

.logo-video {
    width: 150px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

nav {
    flex: 1;
    /* Take up the remaining space */
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    /* Prevent wrapping */
    transition: transform 0.3s ease-in-out;

}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;

    /* Adjust as needed */
    transition: opacity 0.5s ease-in-out;
}

.nav-links.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

.nav-links li {
    margin: 0.5rem;
}

.nav-links li a {
    color: var(--text-muted);
    font-family: 'Nunito', sans-serif;
    font-size: 14.2px;
    font-weight: 200;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    transform: scale(1.1);
    color: #acc8df;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 15px;
    border-color: var(--link-underline);
}
/* Section Styling */
.terms-section {
    padding: 100px 20px 20px 20px;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 90px;
}
.terms-section p{
    text-align: left !important;
}
p.date {
    text-align: center !important;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1em;
}

.content {
    max-width: 800px;
    margin: 0 auto;
}

.content h2 {
    font-size: 1.8rem;
    margin-top: 1.5rem;
    color: #333 !important;;
}

p, ul {
    font-size: 1em;
    line-height: 1.6;
}



/* Responsive Design for Mobile Devices */
@media screen and (max-width: 600px) {
    .social-media-icons {
        width: 40%;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
    }

    .nav-links li {
        margin: 5px 0;
    }

    .terms-section {
        padding: 80px 10px;
    }
}
