:root {
  /* Archify brand colors */
  --blue-archi-lighter: #80DEFE;      
  --blue-archi-light: #006EE5;      
  --blue-archi-dark: #0122ad;      
  --background-blue-light: #F6FAFF; 
  --text-blue-dark: #212e41;     
  --background-white: #ffffff;
  --background-anim: #DBE3F0;    
    

  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;

  /* Typography */
  --font-family: 'Times New Roman', Times, serif;
}
.footer {
    background: #f4f8ff;
    padding: 50px 40px 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #3b3b3b;

}

.footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}



.footer .footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .footer-column > * {
    width: 75%;
}

.footer .footer-about > * {
    width: 90%;
}

.footer .footer-logo {
    max-width: clamp(10rem, 30vw, 20rem);
    margin-bottom: 20px;
}

.footer .footer-about {
    max-width: 340px;
}

.footer .footer-column:not(:last-child) {
    border-right: 1px solid var(--blue-archi-dark);
    padding-right: 60px;
}

.footer .footer-column h2,
.footer .footer-column h3 {
    margin: 0 0 20px;
    color: var(--blue-archi-dark);
    font-weight: 700;
}

.footer .footer-column h2 {
    font-size: clamp(1.3rem, 2vw, 2rem);
}

.footer .footer-column h3 {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
}

.footer .footer-about p {
    line-height: 1.7;
    font-size: clamp(0.95rem, 1vw, 1rem);
    color: #444;
}

.footer .footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer .footer-column li {
    margin-bottom: 14px;
}

.footer .footer-column a {
    text-decoration: none;
    color: #444;
    transition: color 0.25s ease;
}

.footer .footer-column a:hover {
    color: var(--blue-archi-light);
}



.footer .footer-divider {
    max-width: 1200px;
    margin: 45px auto 20px;
    border-top: 1px solid #e3e3e3;
}

.footer .footer-bottom {
    text-align: center;
    color: #666;
    font-size: clamp(0.9rem, 0.95vw, 0.95rem);
    line-height: 1.6;
}

.footer .footer-bottom p {
    margin: 0;
}

/* Responsive */

@media (max-width: 900px) {
    .footer {
        padding: 40px 25px 20px;
    }

    .footer .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer .footer-column:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
        padding-right: 0;
        padding-bottom: 30px;
    }

    .footer .footer-about {
        max-width: 100%;
    }
    .footer li {
        padding-left: 1rem;
    }

    .footer .footer-column > * {
        width: 100%;
    }
}
