body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

#leftImage {
    max-width: 60%;
    margin-right: 20px;
}

.content {
    margin-top: auto;
    text-align: center;
}

h1 {
    color: #333;
    font-size: 24px;
}

p {
    align-items: center;
    color: #666;
    font-size: 16px;
    transition: opacity 0.5s ease;
}

.more-info {
    background-color: #3498db;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.more-info:hover {
    background-color: #2980b9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.description {
    height: 0;
    overflow: hidden;
    margin-top: 20px;
    opacity: 0;
    transition: height 0.5s ease, opacity 0.5s ease;
}

.description.show {
    height: auto;
    opacity: 1;
}

@keyframes slideFromTop {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@media screen and (max-width: 600px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    #leftImage {
        max-width: 100%;
        margin-right: 0;
    }

    h1 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }
}

@media screen and (min-width: 601px) and (max-width: 1200px) {
    h1 {
        font-size: 28px;
    }

    p {
        font-size: 18px;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1600px) {
    h1 {
        font-size: 32px;
    }

    p {
        font-size: 20px;
    }
}

@media screen and (min-width: 1601px) {
    h1 {
        font-size: 36px;
    }

    p {
        font-size: 22px;
    }
}
