body{
    margin: 0px;
    background: linear-gradient(45deg, black, silver);
    font-family: Arial, sans-serif;
}

.header{
    width: 100%;
    height: auto;
    background-color: #AFAFB0;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0px;
}

.firstview{
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: 15px;
    background-image: url(1022_770a87a4cff9035c66920570ea2f0726.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.title{
    width: 100%;
    height: auto;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    margin: 0px;
    padding-top: 150px;
    padding-bottom: 150px;
    position: relative;
}

.info{
    background-color: #FFFFFFAA;
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 10px;
    position: relative;
}

.container {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 35px;
    margin-bottom: 35px;
    padding: 90px;
    background-color: rgb(240, 181, 199);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.image-section {
    flex: 1;
    min-width: 250px;
}

.image-section img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.text-section {
    flex: 2;
    margin-top: 55px;
}

.text-section p {
    line-height: 3.0;
    margin-bottom: 10px;
}

.image-container {
    display: block;
    width: 80px;
    background-color: #FFFFFF;
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 30px;
    margin-left: 70px;
    text-align: center;
    border: 8px solid #d1d0d0;
    color: rgb(249, 249, 132);
    border-radius: 4px;
    transition: transform 0.3s ease-out;
}

.image-container:hover img {
    transform: translateY(-8px) scale(1.05);
}

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

    .image-section,
    .text-section {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .image-section img {
        max-width: 80%;
    }
}