body {
/*    font-family: Arial, sans-serif;*/
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container1 {
    display: flex;
    background-color: #d1d1d1;
    max-width: 80%;
    margin: 50px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
}

.container1:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    border-left: 3px solid #2889e4;
    border-top: 3px solid red;
}

.image {
    flex: 1;
}

.image img {
    width: 100%;
    height: auto;
}

.content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

h1 {
    font-size: 3rem;
    margin: 0;
    color: blue;
}

.headline {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #333;
}

.description {
    font-size: 1rem;
    margin-bottom: 20px;
    color: black;
    text-align: justify;
}

.read-more {
    font-size: 1rem;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
}

.read-more:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container1 {
        flex-direction: column;
        max-width: 90%;
    }

    .image, .content {
        flex: none;
        width: 100%;
    }

    .content {
        padding: 20px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .headline {
        font-size: 1.3rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .read-more {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .headline {
        font-size: 1.2rem;
    }

    .description {
        font-size: 0.8rem;
    }

    .read-more {
        font-size: 0.8rem;
    }
}
