/* Rólunk oldal */
.rolunk {
    padding: 50px 10px;
}
.rolunk > div {
    max-width: 1024px;
    margin: 0 auto;
}

/* Hero */
.rolunk-hero {
    margin: 0 0 50px;
}
.rolunk-hero h1 {
    font-size: 34px;
    font-weight: 700;
    margin: 20px 0 12px;
}
.rolunk-subtitle {
    font-size: 18px;
    color: #555;
    margin: 0;
}

/* Sections */
.rolunk-section {
    margin: 0 0 60px;
}
.rolunk-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
}
.rolunk-section > p {
    color: #555;
    line-height: 1.7;
    margin: 0 0 16px;
    font-size: 15px;
}

/* Miért válassz minket */
.rolunk-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.rolunk-feature {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 28px 24px;
    transition: border-color 200ms;
}
.rolunk-feature:hover {
    border-color: black;
}
.rolunk-feature-icon {
    width: 52px;
    height: 52px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px;
}
.rolunk-feature h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
}
.rolunk-feature p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Csapatunk */
.rolunk-team {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}
.rolunk-member {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 28px;
    transition: border-color 200ms;
}
.rolunk-member:hover {
    border-color: black;
}
.rolunk-member-img {
    flex-shrink: 0;
}
.rolunk-member-img img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.rolunk-member-info {
    flex: 1;
}
.rolunk-member-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px;
}
.rolunk-member-role {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #00C853;
    margin: 0 0 12px;
}
.rolunk-member-info > p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 16px;
}
.rolunk-member-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.rolunk-member-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    transition: color 200ms;
}
.rolunk-member-contact a:hover {
    color: #00C853;
}
.rolunk-member-contact a svg {
    flex-shrink: 0;
}

/* Számok */
.rolunk-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    background: black;
    border-radius: 8px;
    padding: 40px 20px;
}
.rolunk-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #00C853;
    margin: 0 0 4px;
}
.rolunk-stat-label {
    font-size: 14px;
    color: white;
    font-weight: 500;
}

/* Záró szekció */
.rolunk-closing {
    border-top: 1px solid #e0e0e0;
    padding: 56px 0 20px;
    text-align: center;
}
.rolunk-closing-accent {
    width: 40px;
    height: 3px;
    background: #00C853;
    border-radius: 2px;
    margin: 0 auto 32px;
}
.rolunk-closing h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 0 0 20px;
}
.rolunk-closing-lead {
    font-size: 15px;
    line-height: 1.8;
    color: #777;
    max-width: 580px;
    margin: 0 auto;
}
.rolunk-closing-divider {
    display: none;
}
.rolunk-closing-statement {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    color: #222;
    max-width: 580px;
    margin: 24px auto 0;
}

/* Responsive */
@media (max-width: 768px) {
    .rolunk-hero h1 {
        font-size: 28px;
        margin: 16px 0 8px;
    }
    .rolunk-subtitle {
        font-size: 16px;
    }
    .rolunk-features {
        grid-template-columns: 1fr;
    }
    .rolunk-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        padding: 24px 20px;
    }
    .rolunk-member-contact {
        justify-content: center;
    }
    .rolunk-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 30px 16px;
    }
    .rolunk-stat-number {
        font-size: 28px;
    }
    .rolunk-section {
        margin: 0 0 40px;
    }
    .rolunk-closing {
        padding: 40px 0 16px;
    }
    .rolunk-closing h2 {
        font-size: 20px;
    }
}
