* {
    font-family: "Montserrat";
    margin: 0;
    padding: 0;
}

.newsletter {
    background-color: rgb(77, 77, 77);
    height: 400px;
    flex-wrap: wrap;
}

#newsletter-iframe {
    border: none;
    overflow: auto;
}

.title {
    color: white;
    background-color: rgb(220, 20, 60);
    padding: 10px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-page {
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    height: 40px;
    width: 300px;
    background-color: rgb(217, 217, 217);
    border: none;
    margin-top: 25px;
    word-spacing: 8px;
}

.newsletter-page:hover {
    cursor: pointer;
}

.left {
    color: white;
    line-height: 60px;
    font-size: 50px; 
    font-weight: 500;
    margin-left: 100px;
}

.iframe {
    width: 100%;
    height: 300px;
    box-shadow: 10px 10px 15px rgba(217, 217, 217, 0.7);
}

.inner-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 100px;
    margin-right: 100px;
    align-items: center;
}

@media (max-width: 1024px) {
    .inner-div {
        gap: 20px;
        padding: 0 10px;
    }

    .ilp-insight {
        font-size: 2.5rem;
        font-weight: 800;
    }

    .left {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .inner-div {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .ilp-insight {
        font-size: 2rem;
    }

    .left {
        text-align: center;
        font-size: 1rem;
    }

    .title {
        width: auto;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .ilp-insight {
        font-size: 1.5rem;
    }

    .left {
        font-size: 0.9rem;
    }

    .newsletter-page {
        font-size: 0.9rem;
        width: 90%;
    }

    #newsletter-iframe {
        height: 250px;
    }
}