.main-container {
    padding: 100px 0;
}

.wrapper {
    width: 80%;
    margin: 0 auto;
    margin-top: 60px;
}

.contact-hero-banner-image {
    height: 100vh;
    background-image: url('../images/contact-hero-banner.png');
    background-position: 50%;
    background-size: cover;
}

.contact-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #50265C;
    text-align: center;
}

.contact-header h1 {
    font-size: 38px;
    margin-bottom: 30px;
    line-height: normal;
}

.contact-header p {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.contact-container {
    background: #FEF6F6;
    padding: 28px;
    font-family: 'Roboto', sans-serif;
}

.contact-sec {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #50265C;
}

.contact-sec:not(:last-child) {
    border-bottom: 1px solid #DCDCDC;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.contact-sec img {
    width: 20px;
    position: relative;
    top: 5px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details span {
    font-size: 22px;
    display: block;
    margin-bottom: 10px;
}

a {
    color: #50265C;
    text-decoration: none;
    font-size: 16px;
}

.contact-details p {
    font-size: 16px;
}

@media screen and (max-width: 1024px) {
    .contact-hero-banner-image {
        height: 80vh;
        background-image: url('../images/contact-mobile-hero-banner.png');
        background-position: 0 0;
    }

    .main-container {
        padding: 60px 0;
    }

    .wrapper {
        width: 88%;
        margin-top: 20px;
    }

    .contact-header {
        width: 88%;
        margin: 0 auto;

    }

    .contact-header h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contact-header p {
        font-size: 16px;
    }

    .contact-container {
        padding: 20px 12px;
    }

    .contact-details span {
        font-size: 18px;
    }

    .contact-details p {
        font-size: 14px;
    }

    a {
        font-size: 14px;
    }
}