/* Główna zawartość */
main {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.government-container {
    text-align: center;
    margin-bottom: 50px;
}

.government-container h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #000000;
}

.red-line {
    width: 50px;
    height: 2px;
    background-color: #ff0000;
    margin: 0 0 30px;
}

/* Wiersze rządu */
.government-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 30px;
}

.president-row {
    margin-bottom: 40px;
}

.premier-row {
    margin-bottom: 30px;
}

.vice-premiers-row {
    margin-bottom: 20px;
}

/* Członkowie rządu */
.government-member {
    width: 200px;
    margin: 10px;
    text-align: center;
}

.member-photo {
    width: 180px;
    height: 200px;
    margin: 0 auto 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: rgb(240, 240, 240);
    border-radius: 5px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 18px;
    margin: 0 0;
    color: #000000;
}

.member-info p {
    font-size: 14px;
    color: #555555;
    margin: 0;
    line-height: 1.4;
}