.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem auto;
    padding: 2em;
}

.main img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: .3s ;
    margin-bottom: 20px;
}

.main img:hover {
    transform: scale(1.02);
}

.main h2 {
    color: #333;
    font-size: 2rem;
    margin: 1rem 0;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.main h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6vw;
    height: 2px;
    background: #000;
    border-radius: 2px;
}

.main p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: justify;
    max-width: 90%;
    margin: 0 auto;
    text-indent: 2em;
}