.contact-page {
    background-color: #fff;
    padding: 0px 0px 0px 0px;
    position: relative;
}

.contact-page .hero-wrapper {
    padding: 0px 8% 60px 8%;
    background: linear-gradient(180deg, rgba(215, 238, 255, 1) 68%, rgba(255, 255, 255, 1) 100%);
}

.contact-page .hero-wrapper .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1240px;
    margin: 0px auto;
}

.contact-page .hero-wrapper .hero-content h2 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
}

.contact-page .hero-wrapper .hero-content img {
    height: 100px;
}

.contact-page .contact-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 8% 20px 8%;
}

.contact-page .contact-us img {
    width: 100%;
    max-width: 480px;
    margin-bottom: 30px;
}

.contact-page .contact-us h2 {
    font-size: 30px;
    font-weight: 500;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
}

.contact-page .contact-us p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-align: center;
    max-width: 720px;
    line-height: 24px;
}

.contact-page .blog-strategy {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 100px 8% 100px 8%;
    background-color: #D7EEFF;
}

.contact-page .blog-strategy .text-content {
    flex: 1;
    max-width: 640px;
}

.contact-page .blog-strategy .text-content h2 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
}

.contact-page .blog-strategy .text-content p {
    font-size: 14px;
    font-weight: 300;
    color: #000;
}

.contact-page .blog-strategy .text-content ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 10px;
}

.contact-page .blog-strategy .text-content ul li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-page .blog-strategy .text-content ul li img {
    height: 14px;
}

.contact-page .blog-strategy .text-content ul li span {
    font-size: 14px;
    font-weight: 300;
    color: #000;
}

.contact-page .blog-strategy ul.img-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 10px;
    background-color: #D7EEFF;
    width: 100%;
    max-width: 720px;
}

.contact-page .blog-strategy ul.img-content img {
    width: 100%;
    max-width: 480px;
}

@media screen and (min-width: 720px) {
    .contact-page .hero-wrapper {
        padding: 50px 8%;
    }
}

@media screen and (min-width: 880px) {
    .contact-page .blog-strategy {
        flex-direction: row;
    }
}

@media screen and (min-width: 880px) {
    .contact-page .blog-strategy .text-content h2 {
        font-size: 40px;
    }
}

@media screen and (min-width: 880px) {
    .contact-page .blog-strategy .text-content p {
        font-size: 18px;
    }
}

@media screen and (min-width: 880px) {
    .contact-page .blog-strategy .text-content {
        flex-direction: row;
    }

    .contact-page .blog-strategy .text-content li img {
        height: 18px;
    }

    .contact-page .blog-strategy .text-content li span {
        font-size: 16px;
    }
}