* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #eef8ff;
    margin: 0;
    padding: 0;
    color: black;
    overflow-x: hidden;
}

.main-header {
    background: linear-gradient(to right, #5ea3c8, #7fc4e8);
    color: white;
    padding: 70px 40px;
    position: relative;
    text-align: center;
}

.logo {
    width: 120px;
    position: absolute;
    top: 10px;
    right: 20px;
}

.header-content {
    max-width: 850px;
    margin: 0 auto;
}

.header-content h1 {
    font-size: 60px;
    margin: 0 0 20px 0;
}

.header-content h2 {
    font-size: 26px;
    margin: 0 0 18px 0;
}

.header-content p {
    font-size: 20px;
    margin: 0;
    color: white;
}

section {
    width: 94%;
    max-width: 1200px;
    margin: 25px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
}

h3 {
    color: #216d8a;
    font-size: 22px;
}

p, li {
    font-size: 18px;
    line-height: 1.5;
}

.center-section {
    text-align: center;
}

.banner-image {
    width: 75%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    margin-top: 20px;
}

.student-image {
    width: 70%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
}

.quote {
    color: #216d8a;
    font-size: 20px;
}

a {
    color: #216d8a;
    font-weight: bold;
}

footer {
    background-color: #5ea3c8;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

footer p {
    color: white;
    font-size: 16px;
}

/* PHONE VIEW */
@media screen and (max-width: 768px) {

    .main-header {
        width: 100%;
        padding: 30px 15px;
        text-align: center;
    }

    .logo {
        position: static;
        width: 90px;
        display: block;
        margin: 0 auto 20px auto;
    }

    .header-content {
        width: 100%;
        max-width: 100%;
    }

    .header-content h1 {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .header-content h2 {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .header-content p {
        font-size: 15px;
        line-height: 1.5;
    }

    section {
        width: 92%;
        margin: 15px auto;
        padding: 15px;
    }

    h3 {
        font-size: 19px;
    }

    p, li {
        font-size: 15px;
        line-height: 1.5;
    }

    ul, ol {
        padding-left: 20px;
    }

    .banner-image,
    .student-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .quote {
        font-size: 16px;
    }

    footer {
        width: 100%;
    }

    footer p {
        font-size: 13px;
    }
}