/* ========================================
   THREE-COLUMN SCHOOL FOOTER
   ======================================== */

/* Entire footer section */
.school-footer {
    background-color: #00664f;
    color: #ffffff;
    padding: 50px 35px 25px;
}

/* Footer row */
.school-footer .sek-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

/* All three footer columns */
.school-footer .footer-column {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 15px;
}

/* First column: school logo */
.school-footer .footer-logo-column {
    flex-basis: 34%;
}

/* Second and third columns */
.school-footer .footer-links-column,
.school-footer .footer-contact-column {
    flex-basis: 33%;
}

/* Logo image */
.school-footer .footer-logo-column img {
    display: block;
    width: 100%;
    max-width: 240px;
    height: auto;
    margin: 0 0 20px;
}

/* School description below logo */
.school-footer .footer-logo-column p {
    max-width: 340px;
}

/* Widget headings */
.school-footer .widget-title,
.school-footer h2,
.school-footer h3,
.school-footer h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 16px;
    padding: 0;
}

/* Footer paragraphs */
.school-footer p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 12px;
}

/* Remove default list styling */
.school-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Space footer menu links */
.school-footer li {
    margin: 0 0 10px;
    padding: 0;
}

/* Footer links */
.school-footer a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

/* Link hover and keyboard focus */
.school-footer a:hover,
.school-footer a:focus {
    color: #ffffff;
    text-decoration: underline;
}

/* Contact information */
.school-footer .footer-contact-column address {
    color: rgba(255, 255, 255, 0.88);
    font-style: normal;
    line-height: 1.65;
    margin: 0;
}

/* Optional button in the footer */
.school-footer .footer-button,
.school-footer a.footer-button {
    display: inline-block;
    background-color: #ffffff;
    color: #00664f;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 12px;
    padding: 11px 18px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    text-decoration: none;
}

.school-footer .footer-button:hover,
.school-footer .footer-button:focus {
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
}

/* Optional divider or copyright row */
.school-footer .footer-bottom {
    width: 100%;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center;
}

.school-footer .footer-bottom p {
    font-size: 13px;
    margin: 0;
}

/* ========================================
   TABLET
   ======================================== */

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

    .school-footer .sek-row {
        flex-wrap: wrap;
        gap: 30px;
    }

    .school-footer .footer-column {
        flex: 1 1 calc(50% - 30px);
    }

    .school-footer .footer-logo-column {
        flex-basis: 100%;
    }
}

/* ========================================
   MOBILE
   ======================================== */

@media only screen and (max-width: 600px) {
    .school-footer {
        padding: 35px 22px 20px;
        text-align: center;
    }

    .school-footer .sek-row {
        display: block;
    }

    .school-footer .footer-column {
        width: 100%;
        margin: 0 0 32px;
        padding: 0;
    }

    .school-footer .footer-logo-column img {
        margin-right: auto;
        margin-left: auto;
        max-width: 210px;
    }

    .school-footer .footer-logo-column p {
        margin-right: auto;
        margin-left: auto;
    }

    .school-footer li {
        margin-bottom: 12px;
    }

    .school-footer .footer-bottom {
        margin-top: 5px;
    }
}
```

### Suggested column content

**Column 1 — Logo and school description**

Add an Image module containing the school logo, followed by a Text Editor module with a short description.

```html
<p>
    Adeline Montessori School provides an inclusive Montessori education
    that nurtures independence, curiosity, and a lifelong love of learning.
</p>
```

**Column 2 — Quick Links**

Use a Navigation Menu or Widget module with links such as:

```html
<h3>Quick Links</h3>

<ul>
    <li><a href="/about/">About Our School</a></li>
    <li><a href="/enrollment/">Enrollment</a></li>
    <li><a href="/calendar/">School Calendar</a></li>
    <li><a href="/family-resources/">Family Resources</a></li>
    <li><a href="/contact/">Contact Us</a></li>
</ul>
```

**Column 3 — Contact information**

```html
<h3>Contact Us</h3>

<address>
    <p>
        Adeline Montessori School<br>
        Waukesha, Wisconsin
    </p>

    <p>
        <a href="tel:+12625551234">(262) 555-1234</a><br>
        <a href="mailto:info@example.org">info@example.org</a>
    </p>
</address>

<a class="footer-button" href="/contact/">Get in Touch</a>
```

Replace the sample phone number, email address, links, and location with the school’s actual information.
					
				
}