/* Shared Footer Styles */
.shared-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(64, 224, 208, 0.3);
    text-align: center;
}

.shared-footer p {
    font-size: 0.95rem;
    color: #8dd3c7;
    margin-bottom: 15px;
    font-weight: 300;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #40E0D0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    font-weight: 400;
}

.footer-links a:hover {
    color: #5ff5e3;
    border-bottom-color: #40E0D0;
}

.footer-links span {
    color: #8dd3c7;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shared-footer {
        margin-top: 50px;
        padding-top: 30px;
    }

    .shared-footer p {
        font-size: 0.85rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links span {
        display: none;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .shared-footer p {
        font-size: 0.8rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }
}
