body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    padding: 50px 100px 10px 100px;
    color: #155781;

    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

#logo {

    img {
        height: 200px;
    }
}

header {

    display: flex;
    justify-content: space-between;
    align-items: center;

    div#menu span {
        padding: 20px;
        font-size: 30px;
        font-weight: bold;
    }
}

footer {
    text-align: center;
}

hr {
    border-color: #1C75AD;
}

a {
    text-decoration: none;
    color: #155781;
}

a:hover {
    color: #1C75AD;
}

a.button {
    padding: 12px 20px;
    background-color: #155781;
    color: white;
    border-radius: 8px;
    display: inline-block;
}

a.button:hover {
        background-color: #1C75AD;
    }

h1 {
    text-align: center;
    font-size: 48px;
}

h2 {
    text-align: center;
    font-size: 32px;
}

h3 {
    text-align: center;
    font-size: 24px;
}


section.hilite {

    display: flex;
    justify-content: space-evenly;
    align-items: center;

    &.one-to-two {
        .hilite-text {
            width: 32%;
        }

        .hilite-image {
            width: 68%;
        }
    }

    &.one-to-one {
        .hilite-text {
            width: 50%;
        }

        .hilite-image {
            width: 50%;
        }
    }

    .hilite-text {

        width: 32%;
        text-align: center;

        p.title {
            font-size: 48px;
            font-weight: bold;
        }

        p.line {
            font-size: 32px;
        }
    }

    .subtext {
        font-size: 20px;
    }

    .hilite-image {
        width: 68%;
        align-items: center;

        img {
            max-height: 420px;
            width: auto;
            display: block;
            margin: 0 auto;
        }
    }
}

hr {
    margin: 48px;
}

section.card-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 12px;

    .card {
        max-width: 280px;
        width: 280px;
        
        .card-title {
            padding: 12px;
            font-size: 24px;
            font-weight: bold;
            text-align: center;
        }

        .card-problem {
            padding: 8px;
            font-size: 16px;
            text-align: center;
            height: 40px;
        }

        .card-img {
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
                width: 240px;
            }

            &.portrate {
                height: 280px;
            }
        }

        .card-text {
            background-color: #1C75AD;
            padding: 12px;
            color: white;
            height: 100px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;

            &.light {
                background-color: white;
                color: #1C75AD;
            }
        }
    }
}

span.radial-bg {
    background: radial-gradient(ellipse 70% 40% at 50% 50%, #ffd7be 0%, white 100%);
    border-radius: 0px;
    display: inline-block;
}

.align-center {
    text-align: center;
}

/* Responsive styles for mobile devices */
@media (max-width: 600px) {
    body {
        padding: 20px 10px 10px 10px;
    }

    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 20px;
    }
    h2 {
        font-size: 16px;
    }

    div#menu { 
        span {
            padding: 0px;
        }
    }

    #logo {
        img {
            width: 148px;
        }
    }

    header {

        #menu {
            display: flex;
            flex-direction: column;
            align-items: flex-end;

            a.button {
                font-size: 16px;
                margin: 0px;
            }
        }
    }

    section.hilite {
        flex-direction: column;
    }

    section.hilite .hilite-text,
    section.hilite .hilite-image {
        width: 100%;

        p.title {
            font-size: 16px;
        }
    }

    section.card-container {
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }

    .card {
        width: 100% !important;
        max-width: 100% !important;

        .card-text {
            font-size: 12px;
            height: 60px;
        }
    }

    .card-img img {
        width: 100% !important;
        max-width: 200px;
    }
}