/* Footer Styling */
.footer {
    background-color: #1e3a8a;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    width: 100%;
}

.footer-container {
    max-width: 900px;
    margin: auto;
    padding: 10px;
}

/* Navigation Links */
.nav-links-foot {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.nav-links-foot a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links-foot a:hover {
    color: #facc15;
}

/* Copyright & Additional Info */
.copyright, .co-founder, .counsellor {
    font-size: 14px;
    margin-bottom: 5px;
}

/* Privacy Policy Section */
.privacy-policy {
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: 20px auto;
}

.privacy-policy h2, .privacy-policy h3 {
    color: #facc15;
    margin-bottom: 8px;
}

.privacy-policy ul {
    list-style-type: disc;
    padding-left: 20px;
}

.privacy-policy p {
    margin: 5px 0;
}

/* Highlighted Text */
.highlight {
    color: red;
    font-weight: bold;
}

.external-link {
    color: yellow;
    text-decoration: underline;
}

.external-link:hover {
    color: #ffcc00;
}
