* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

body {
    line-height: 1.2;
    color: #333333;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9)), url(IMAGES/ZedTop20\ Logo.png) no-repeat center center fixed;
    background-size: contain;
    min-height: 100vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #0a0d15;
    box-shadow: 0.2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: nowrap;
}

.left-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 1;
    min-width: 0;
}

.back-button {
    font-weight: bold;
    font-size: 1rem;
    background-color: #131620;
    color: #46a3ff;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 15px;
    margin-left: 0;
    transition: background 0.3s;
}

.back-button:hover {
    background-color: #10225c;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.logo-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #4a6cf7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.nav-text {
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    font-weight: bold;
    color: #46a3ff;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    background: transparent;
    color: #46a3ff;
    border: none;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links .dropdown {
    margin-left: auto;
    flex-shrink: 0;
    position: relative;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem 2%;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

.dropdown {
    display: inline-block;
}

.dropbtn {
    background: transparent;
    color: #46a3ff;
    border: none;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    font-size: clamp(1rem, 2vw, 1.3rem);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.dropbtn:hover {
    color: #1b5aac;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #0a0d15;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 1001;
}

.dropdown-content a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    margin: 5px 0;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.dropdown-content.show {
    display: block;
}


@media (max-width: 900px) {
    .logo-image {
        width: 60px;
        height: 60px;
    }

    .back-button {
        padding: 6px 12px;
        margin-right: 10px;
    }

    .dropbtn {
        font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    }
}

@media (max-width: 600px) {
    .logo-image {
        width: 50px;
        height: 50px;
    }

    .back-button {
        padding: 5px 10px;
        margin-right: 10px;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .dropbtn {
        font-size: 0.9rem;
    }
}


.welcome-container {
    text-align: center;
    max-width: 90%;
    width: 900px;
    margin: 70px auto 50px;
    padding: 40px 30px;
    background: #34ffe4;
    border-radius: 20px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.10);
    border: 2px solid rgba(0, 255, 255, 0.25);
}

.page-title {
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 800;
    color: #071633;
    margin-bottom: 10px;
    letter-spacing: 1px;
    position: relative;
}

.page-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: rgb(6, 19, 29);
    border-radius: 10px;
    margin: 12px auto 0;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
}

.intro-text {
    font-size: clamp(1rem, 1.5vw, 1.4rem);
    color: #000000;
    margin-top: 18px;
    line-height: 1.8;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}



.demarcation-line {
    height: 2px;
    color: #1E90FF;
    margin: 0.5rem 0 1rem 0;
    border-radius: 1000%;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    padding: 0 5%;
    margin-bottom: 70px;
}

.column {
    flex: 1 1 30%;
    min-width: 280px;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}



.column a {
    font-family: Georgia, 'Times New Roman', Times, serif;
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffffff;
    margin: 1rem 0;
    text-decoration: none;
    padding: 12px 25px;
    background: linear-gradient(135deg, #4a4cf7, #46a3ff);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.column a:hover {
    background: linear-gradient(135deg, #46a3ff, #4a4cf7);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.column p {
    font-family: "Lora", "Playfair Display", "Poppins", serif;
    line-height: 1.7;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .column {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .column {
        flex: 1 1 100%;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        text-align: left;
        padding: 10px 0;
    }

    .welcome-container {
        padding: 30px 20px;
    }
}

.university-text,
.full-text {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.column.show .university-text,
.column.show .full-text {
    max-height: 500px;
    opacity: 1;
}
.short-summary {
    font-size: 1rem;
    font-weight: bold;
    color: #1E90FF;
    text-align: center;
    margin: 0.5rem 0;
    font-style: normal;
}

.university-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin-bottom: 1rem;
}

.slideshow {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 220px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    border-radius: 12px 12px 0 0;
}

.slideshow img.active {
    opacity: 1;
}

.slideshow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    pointer-events: none;
    z-index: 1;
}


.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem;
    margin-top: 1.5rem;
}

.stat-item {
    flex: 1 1 calc(33% - 1rem);
    min-width: 120px;
    background: #ffffff;
    border-radius: 50px;
    padding: 14px 10px;
    text-align: center;
    border: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12), 0 0 10px rgba(0, 255, 255, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18), 0 0 16px rgba(0, 255, 255, 0.35);
    border-color: rgba(0, 255, 255, 0.7);
}

.stat-value {
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    font-weight: 800;
    color: #111;
}

.stat-label {
    font-size: clamp(0.6rem, 1vw, 0.75rem);
    color: #008b8b;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.read-more-btn {
    display: inline-block;
    margin: 15px auto 0 auto;
    padding: 10px 25px;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(135deg, #4a4cf7, #46a3ff);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #46a3ff, #4a4cf7);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.thank-you-column {
    position: relative;
    flex: 1 1 30%;
    min-width: 280px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 30px;
}


.thank-you-column::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('IMAGES/books.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(6px) brightness(0.8);
    transform: scale(1.1);
    z-index: 1;
}


.thank-you-column h2,
.thank-you-column p,
.thank-you-column .contact-btn {
    position: relative;
    z-index: 2;
}


.thank-you-column h2 {
    font-size: clamp(1.5rem, 2.5vw, 28px);
    margin-bottom: 10px;
    color: #53a1f3f6;
}


.thank-you-column p {
    font-size: clamp(0.9rem, 1.5vw, 16px);
    line-height: 1.6;
    color: black;
}


.contact-btn {
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #000000;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background-color: #000000;
}





*,
*::before,
*::after {
    box-sizing: border-box;
}


.ict-page {
    font-family: "Poppins", sans-serif;
    background-color: #f7f9fc;
    color: #333;
}

.ict-page .container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.ict-page .page-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    color: #00695c;
    font-weight: 700;
    position: relative;
}

.ict-page .page-title::after {
    content: '';
    width: 70px;
    height: 4px;
    background: #00bfa5;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

.ict-page .university-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.ict-page .university-card {
    background: linear-gradient(145deg, #ffffff, #d0f0eb);
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    text-align: center;
    border: 1px solid #00bfa5;
    position: relative;
}

.ict-page .university-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(145deg, #a7e8df, #00bfa5);
}

.ict-page .university-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ict-page .university-name a {
    text-decoration: none;
    color: #004d40;
    transition: color 0.3s, text-shadow 0.3s;
}

.ict-page .university-name a:hover {
    color: #00bfa5;
    text-shadow: 0 0 8px rgba(0, 191, 165, 0.5);
}

.ict-page .program-details {
    font-size: 1rem;
    line-height: 1.6;
    color: black;
}



.engineering-page {
    font-family: "Poppins", sans-serif;
    background-color: #f7f9fc;
    color: #333;
}

.engineering-page .container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.engineering-page .page-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    color: #00695c;
    font-weight: 700;
    position: relative;
}

.engineering-page .page-title::after {
    content: '';
    width: 70px;
    height: 4px;
    background: #00bfa5;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

.engineering-page .university-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.engineering-page .university-card {
    background: linear-gradient(145deg, #ffffff, #d0f0eb);
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    text-align: center;
    border: 1px solid #00bfa5;
    position: relative;
}

.engineering-page .university-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(145deg, #a7e8df, #00bfa5);
}

.engineering-page .university-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.engineering-page .university-name a {
    text-decoration: none;
    color: #004d40;
    transition: color 0.3s, text-shadow 0.3s;
}

.engineering-page .university-name a:hover {
    color: #00bfa5;
    text-shadow: 0 0 8px rgba(0, 191, 165, 0.5);
}

.engineering-page .program-details {
    font-size: 1rem;
    line-height: 1.6;
    color: black;
}




.health-page {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f9f7f7;
    color: #333;
}

.health-page .container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.health-page .page-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    color: #00695c;
    font-weight: 700;
    position: relative;
}

.health-page .page-title::after {
    content: '';
    width: 70px;
    height: 4px;
    background: #00bfa5;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

.health-page .university-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.health-page .university-card {
    background: linear-gradient(145deg, #ffffff, #d0f0eb);
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    text-align: center;
    border: 1px solid #00bfa5;
    position: relative;
}

.health-page .university-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(145deg, #a7e8df, #00bfa5);
}

.health-page .university-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.health-page .university-name a {
    text-decoration: none;
    color: #004d40;
    transition: color 0.3s, text-shadow 0.3s;
}

.health-page .university-name a:hover {
    color: #00bfa5;
    text-shadow: 0 0 8px rgba(0, 191, 165, 0.5);
}

.health-page .program-details {
    font-size: 1rem;
    line-height: 1.6;
    color: black;
}






.business-management {
    font-family: "Poppins", sans-serif;
    background-color: #e8f5f2;
    color: #1a1a1a;
}

.business-management .container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.business-management .page-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    color: #00695c;
    font-weight: 700;
    position: relative;
}

.business-management .page-title::after {
    content: '';
    width: 70px;
    height: 4px;
    background: #00bfa5;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

.business-management .university-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding-bottom: 3rem;
}

.business-management .university-card {
    background: linear-gradient(145deg, #ffffff, #d0f0eb);
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    text-align: center;
    border: 1px solid #00bfa5;
    position: relative;
}

.business-management .university-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(145deg, #a7e8df, #00bfa5);
}


.business-management .university-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.business-management .university-name a {
    text-decoration: none;
    color: #004d40;
    transition: color 0.3s, text-shadow 0.3s;
}

.business-management .university-name a:hover {
    color: #00bfa5;
    text-shadow: 0 0 8px rgba(0, 191, 165, 0.5);
}

.business-management .program-details {
    font-size: 1rem;
    line-height: 1.6;
    color: black;
}







.education-programs {
    font-family: "Poppins", sans-serif;
    background-color: #fff8e7;
    color: #1a1a1a;
}

.education-programs .container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.education-programs .page-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    color: #00695c;
    font-weight: 700;
    position: relative;
}

.education-programs .page-title::after {
    content: '';
    width: 70px;
    height: 4px;
    background: #00bfa5;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

.education-programs .university-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-bottom: 3rem;
}

.education-programs .university-card {
    background: linear-gradient(145deg, #ffffff, #d0f0eb);
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    text-align: center;
    border: 1px solid #00bfa5;
    position: relative;
}

.education-programs .university-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(145deg, #a7e8df, #00bfa5);
}


.education-programs .university-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.education-programs .university-name a {
    text-decoration: none;
    color: #004d40;
    transition: color 0.3s, text-shadow 0.3s;
}

.education-programs .university-name a:hover {
    color: #00bfa5;
    text-shadow: 0 0 8px rgba(0, 191, 165, 0.5);
}

.education-programs .program-details {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 1024px) {
    .education-programs .university-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .ict-page .page-title,
    .engineering-page .page-title,
    .health-page .page-title,
    .business-management .page-title,
    .education-programs .page-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 600px) {

    .ict-page .page-title,
    .engineering-page .page-title,
    .health-page .page-title,
    .business-management .page-title,
    .education-programs .page-title {
        font-size: 2rem;
    }

    .ict-page .university-card,
    .engineering-page .university-card,
    .health-page .university-card,
    .business-management .university-card,
    .education-programs .university-card {
        padding: 1.3rem 1rem;
    }

    .education-programs .university-list {
        grid-template-columns: 1fr;
    }
}




.site-footer {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: auto;
}

.site-footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    gap: 20px;
    flex-wrap: wrap;
}

.site-footer .footer-column {
    flex: 1;
    min-width: 250px;
}

.site-footer .footer-column h3 {
    font-size: 1.8rem;
    color: #a6a6a6;
    margin-bottom: 10px;
    font-weight: bold;
}

.site-footer .footer-column p {
    font-size: 1rem;
    color: #ffffffcc;
    line-height: 1.6;
    margin: 0.2rem 0;
}

.site-footer .footer-column p a {
    font-size: 1rem;
    color: rgba(238, 175, 57, 0.986);
    line-height: 1.6;
    margin: 0.2rem 0;
    text-decoration: none;

}

.site-footer .footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    border-top: 1px solid #ffffff55;
    padding-top: 15px;
    width: 100%;
    font-size: 0.9rem;
    color: #ffffffaa;
}


@media (max-width: 1024px) {
    .site-footer .footer-top {
        flex-direction: row;
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 15px;
        gap: 20px;
    }

    .site-footer .footer-column {
        min-width: 100%;
        text-align: center;
    }

    .site-footer .footer-column h3 {
        font-size: 1.5rem;
    }

    .site-footer .footer-column p {
        font-size: 0.95rem;
    }

    .site-footer .footer-bottom {
        font-size: 0.85rem;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 20px 10px;
        gap: 15px;
    }

    .site-footer .footer-column h3 {
        font-size: 1.3rem;
    }

    .site-footer .footer-column p {
        font-size: 0.9rem;
    }

    .site-footer .footer-bottom {
        font-size: 0.8rem;
    }
}

.flex-container:last-of-type {
    margin-bottom: 60px;
}



html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1; 
}
