/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
}
.container {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}
header {
    background-color: #1a1a5e;
    color: white;
    padding: 20px 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    
}
nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(26, 26, 94, 0.8); /* Slightly transparent */
    backdrop-filter: blur(10px); /* Blur background */
    z-index: 1000;
}
.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin-right: 80px;

}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}

.hero {
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    color: white;
    text-align: center;
   
    
}

.hero h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.terms-content {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.terms-content h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.terms-content h4 {
    font-size: 1.4em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.terms-content p,
.terms-content ul {
    margin-bottom: 20px;
}

.terms-content ul {
    padding-left: 20px;
}

.terms-content li {
    margin-bottom: 10px;
}

footer {
    background-color: #1a1a5e;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer div {
    margin-bottom: 10px;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

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

footer p {
    margin: 0;
}

.social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.social-links img {
    width: 30px;
    height: 30px;
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3em;
    }

    .terms-content {
        font-size: 1.2em;
    }

    footer div {
        font-size: 1.2em;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .terms-content {
        font-size: 1.1em;
        padding: 30px 15px;
    }

    footer div {
        font-size: 1.1em;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    nav {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .terms-content {
        font-size: 1em;
        padding: 20px 10px;
    }

    footer div {
        font-size: 1em;
    }

    .social-links img {
        width: 25px;
        height: 25px;
    }
}
