#info_cards h1 {
    font-size: 48px;
    margin: 100px 0 40px 0;
}

.info_card_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 0 40px 0 40px;
}


.info_card {
    width: 336px;
    height: 280px;
    background-color: #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 40px;
}

/* pierwsza karta w pierwszym wierszu: zielona */
.info_card_row:first-of-type .info_card:nth-child(1) {
    background-color: #FF931E;
}

/* druga karta w pierwszym wierszu: niebieska */
.info_card_row:first-of-type .info_card:nth-child(2) {
    background-color: #1565C0;
}

.info_card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 0;
}

.info_card span {
    font-size: 18px;
    margin-bottom: 15px;
}

