body {
    margin: 0;
    padding-bottom: 40px;
}

/* container */
.container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 0;
}

/* blocks */
.block {
    background-color: #fdfcfb;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    flex: 1 1 calc(33.333% - 20px);
    margin: 10px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Images*/
.block img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Header */
.block h3 {
    font-size: 18px;
    font-weight: semi-bold;
    color: #001a47;
    margin: 15px 0;
}

/* Block paragraphs */
.block p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
   font-family: 'Bricolage Grotesque';
  font-weight: regular;
