body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1; /* Pushes footer to bottom if content is short */
}

/* Footer should no longer be absolutely positioned */
.footer {
    background-color: var(--light-blue);
    width: 100%;
    border-top: 1px solid var(--medium-blue);
    padding-top: 20px;
}

/* footer-style.css */

/* Light Blue Color Scheme */
:root {
    --light-blue: #e6f2ff;
    --medium-blue: #cce5ff;
    --dark-blue: #0066cc;
    --text-dark: #333;
    --text-light: #555;
    --yellow-btn: #ffc107;
    --yellow-dark: #e0a800;
    --copyright-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}



/* Footer Styles */
.footer {
    background-color: var(--light-blue);
    position: absolute;
    bottom: 0;
    width: 100%;
    border-top: 1px solid var(--medium-blue);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-logo-section {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.footer-title {
    font-size: 22px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-about p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.disclosure-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.yellow-btn {
    display: inline-block;
    background-color: var(--yellow-btn);
    color: #000;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    margin: 5px 5px 5px 0;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid var(--yellow-dark);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.yellow-btn:hover {
    background-color: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.yellow-btn i {
    margin-left: 5px;
}

.footer-section h3 {
    font-size: 18px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 2px solid var(--medium-blue);
    padding-bottom: 5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--dark-blue);
    padding-left: 5px;
}

.contact-info {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--dark-blue);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.disclaimer {
    background-color: #fff3cd;
    padding: 15px;
    border-radius: 4px;
    margin: 30px 0;
    color: #856404;
    font-size: 14px;
    border-left: 4px solid #ffeeba;
}

.copyright {
    text-align: center;
    padding: 15px 0;
    background: var(--copyright-gradient);
    color: white;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.copyright a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copyright a:hover {
    text-decoration: underline;
    color: #fff;
}

.version {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-logo-section {
        grid-column: auto;
    }

    body {
        padding-bottom: 600px;
    }

    .copyright {
        padding: 15px 10px;
        font-size: 13px;
    }
}
