.orange-circle {
    width: 100px;
    height: 100px;
    background-color: orange;
    border-radius: 50%;
}

.main {
    align-self: center;
    display: flex;
    flex-direction: column;
}

.input {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
}

.blue-paper {
    background: url('../assets/bluePaper.jpg') no-repeat center center / cover;
    width: 100%;
    height: 389px;
    padding-top: 40px;
    padding-bottom: 145px;
    display: flex;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); /* customize as needed */
    margin-bottom: -74px;
}

.blue-paper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* keeps aspect ratio without distortion */
    display: block;      /* removes bottom space from inline-block */
}

/* Hero section */
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 60vh;
    height: 70vh;
    padding: 0 20px 48px;
    margin-top: 180px;
}

.hero-section > div {
    display: flex;
    justify-content: center;
}

.title {
    align-items: center;
    margin-bottom: 64px;
    padding: 0 64px;
}

.hero-section-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* Contact section */
.contact-section {
    padding: 80px 24px;
}

.contact-section > div {
    display: flex;
    flex: 1;
    justify-content: center;
    flex-direction: column;
}

.contact-section > div > div > .body-text {
    margin-bottom: 30px;
}

/* Info section */
.header-img {
    display: none;
}

.info-section-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    padding: 0 24px;
}

.info-section {
    align-items: center;
}

/* ===============================
   Desktop styles
   =============================== */
@media (min-width: 901px) {
    .header-img {
        position: absolute;
        top: 0; 
        right: 0;
        height: 90vh;
        width: 830px;
        background: url('../assets/eduTornPaperFaceLeft.png') no-repeat center center / cover;
        z-index: -10;
    }

    .hero-section {
        flex-direction: row;
        min-height: 70vh;
        height: 90vh;
        padding: 180px 110px 0;
        margin-top: 0;
        position: relative;
        margin-bottom: 40px;
    }

    .title {
        margin-bottom: 0;
    }


    .hero-section-content {
        flex-direction: column;
    }

    .hero-section-content-wrapper {
        flex-direction: column;
        align-items: flex-end;
    }

    .info-section {
        display: flex;
        justify-content: space-between;
        padding: 0 110px;
        /* margin-top: -80px; */
    }

    .info-section-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
        justify-content: center;
        padding: 0;
        max-width: 600px;
    }

    .blue-paper {
        width: 890px;
        height: 516px;
        margin-right: -25%;
        border-radius: 60px;
        padding: 64px 90px;
        justify-content: flex-start;
        margin-bottom: 0;
    }

    .blue-paper img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }

    .contact-section {
        display: flex;
        padding: 80px 110px;
    }

    .contact-section > div {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: flex-start;
    }

    .contact-section > div > .body-text {
        margin-bottom: 0;
    }

    /* Extra large screens */
    @media (min-width: 1580px) {
        .blue-paper {
            width: 990px;
            height: 620px;
            padding-left: 140px;
        }

        .info-section-content {
            max-width: 760px;
        }
    }
}
