/* Page Footer */
.page-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Left Section - reCAPTCHA */
.footer-left {
    flex-shrink: 0;
}

.recaptcha-logo {
    width: 70px;
    height: auto;
}

/* Center Section - Text Content */
.footer-center {
    flex: 1;
}

.footer-center p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    font-family: var(--font-primary);
}

.sub-text {
    font-size: 13px;
    color: #666;
    margin-top: 5px !important;
}

.learn-more {
    color: #1a73e8;
    text-decoration: none;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Right Section - Navigation */
.footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.slide-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background: #1a73e8;
}

.next-slide {
    background: none;
    border: none;
    color: #1a73e8;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.next-slide:hover {
    background: #f0f7fe;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }

    .recaptcha-logo {
        margin-bottom: 10px;
    }
}

/* Adjust main content padding to prevent footer overlap */
body {
    padding-bottom: 100px;
}