.content {
    background: #ffffff;
    color: #000;
    position: relative;
    overflow: hidden;
}

.content h2 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.25em;
    margin-top: 1.5rem;
    margin-left: 3rem;
    color: #223035;
    font-family: 'Poppins' sans-serif;
}

.content p {
    font-size: 20px;
    color: #4C575B;
    margin-left: 2rem;
    padding: 1rem;
    line-height: 2rem;
}

.content h3 {
    font-size: 1.5rem;
    margin-top: 1rem;
    color: #223035;
    margin-left: 3rem;
}

.container1 {
    display: flex;
    width: 100%;
    background: white;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-section img {
    width: 100%;
    height: auto;
    max-width: 450px;
}
.content-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.content-section span {
    color: #d55c33;
    font-weight: bold;
    font-size: 18px;
}
.content-section h2 {
    font-size: 48px;
    color: #333;
    margin: 10px 0;
}
.content-section p {
    font-size: 22px;
    color: #555;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .container1 {
        flex-direction: column;
        text-align: center;
    }
    .image-section img {
        max-width: 100%;
    }
    .content-section {
        padding: 20px;
    }

    .content p {
        font-size: 1rem;
    }
}
