body {
    font-family: 'Inter', sans-serif;
}

.site-footer {
    position: relative;
    background-color: #FFEEF2;
    padding: 80px 0 20px;
    font-family: 'Inter', sans-serif;
    color: #2E2E2E;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background-image: url('../../assets/earth.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    /* opacity: 1; */
    z-index: 0;
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo {
    width: 60px;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Inter', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #890C25;
    line-height: 1;
}

.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #890C25;
}

.footer-school-name {
    font-size: 24px;
    font-weight: 600;
    color: #890C25;
    margin-bottom: 28px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 22px;
    margin-top: 3px;
    object-fit: contain;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #262626;
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
}

.footer-title {
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    color: #890C25;
    margin-bottom: 28px;
}

.footer-col2 {
    padding-left: 60px; /* Shift to right */
}

@media (max-width: 991px) {
    .footer-col2 {
        padding-left: 15px;
    }
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #262626;
    text-decoration: none;
}

.footer-links a:hover {
    color: #890C25;
}

.newsletter-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #262626;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 35px;
}

.newsletter-form input {
    width: 260px;
    padding: 12px 20px;
    border: 1px solid #26262600;
    border-radius: 4px;
    background: #FFFFFF;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #890C25;
}

.newsletter-form button {
    padding: 0 21px;
    border: none;
    border-radius: 4px;
    background-color: #890C25;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background-color: #700a1e;
}

.send-icon {
    width: 24px;
    height: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 28px;
    height: 28px;
    background-color: #890C25;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-bottom {
    margin-top: 60px;
    padding-bottom: 10px;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #2626261F;
    margin-bottom: 20px;
}

.copyright {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #26262666;
}
@media (max-width: 991px) {
    .site-footer {
        padding: 60px 0 30px;
    }
    .footer-col {
        margin-bottom: 45px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form button {
        padding: 15px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .site-footer::before {
        display: none;
    }
    
    .footer-logo-wrapper {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .logo-text, .footer-school-name, .contact-item strong, .contact-item p, .footer-title, .newsletter-desc {
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer-col2 {
        padding-left: 0;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form input {
        width: 100%;
        text-align: center;
    }
}
