.imagine {
    text-align: center;
    margin-top: 40px;
}

.imagine img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.imagine img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.description {
    max-width: 700px;
    margin: 30px auto;
    padding: 20px 30px;
    background: linear-gradient(135deg, #1e1e2f, #2b2b3d);
    color: #f0f0f0;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.description:hover {
    transform: translateY(-5px);
}

.description strong {
    color: #00bcd4;
}

.description em {
    color: #ffb74d;
    font-style: normal;
}
