#site-footer {
    background-color: var(--primary-color);
    padding: 1rem;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Adds space between the logo image and text */
}

.footer-logo img {
    height: 40px; /* Smaller logo size */
    width: auto;
}

.footer-logo-text {
    font-size: 1rem;
    font-weight: bold;
    display: block; /* Ensures the image doesn’t have extra space below it */
    margin-bottom: 0;
    line-height: 1.5; /* Adjusts line height for better text readability */
}

.footer-title-part {
    color: var(--text-color); /* Default text color */
}

.footer-title-part-highlight {
    color: var(--secondary-color); /* Highlight color for "Study" */
}

.footer-text {
    font-size: 1rem;
    color: var(--secondary-text-color);
    text-align: center;
}

.footer-text p {
    margin: 0;
    line-height: 1.5; /* Adjusts line height for better text readability */
}

.footer-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    text-align: center;
}

.footer-links a {
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 0.5rem;
    }
}
