.rolam {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.nevem {
    color: #2c3e50;
    font-size: 2.2em;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 10px;
}

.rolam img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-primary);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

#rolam-leiras {
    text-align: justify;
    flex: 1;
    min-width: 300px;
    font-size: 1.1em;
}

/* Reszponzív stílusok */
@media (max-width: 700px) {
    .rolam {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    #rolam-leiras {
        order: 2; /* Leírás a kép alatt */
        min-width: auto;
        width: 100%;
        padding: 0 10px;
    }
    
    .rolam::before {
        content: "";
        display: block;
        width: 100%;
        order: 1; /* Kép a leírás felett */
    }
    
    .rolam img {
        order: 1;
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .nevem {
        font-size: 1.8em;
    }
    
    .rolam img {
        width: 180px;
        height: 180px;
    }
    
    #rolam-leiras {
        font-size: 1em;
    }
}