.about-section {
    position: relative;
    background: url('../images/section.png') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 7%;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-products {
    margin-top: 20px;
    max-width: 100%;
    height: auto;
}

.cards-container {
    margin-top: -40px;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
}

.info-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
}

.info-card img {
    width: 50px;
    margin-bottom: 15px;
}

.info-card p {
    margin: 0;
    color: #333;
    font-size: 18px;
    font-weight: 500;
}


/* css section 3 page proros */
.story-section {
    padding: 60px 0;
    background-color: #f5faff;
}

.story-title {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 50px;
}

.story-text {
    font-size: 19px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 15px;
    text-align: justify;
}

.blue-btn {
    background-color: #014A98;
    color: #fff;
    border-radius: 6px;
    padding: 12px 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

.blue-btn:hover {
    background-color: #014A98;
    color: #fff;
}

/* fin css section 3 page proros */


/* css section 4 page propos */

.image-row {
    background-image: url('../images/section4-propos.png');
    background-size: cover;
    background-position: center;
    height: 300px;
}

.five-boxes {
    display: flex;
    border: 1px solid #c5c5c5;
    border-collapse: collapse;
    flex-wrap: wrap;
}

.five-boxes .box {
    flex: 1 1 20%; /* Desktop: 5 boxes in one row */
    border-right: 1px solid #c5c5c5;
    padding: 20px;
    background-color: white;
    border-radius: 0;
}
.five-boxes .box:nth-child(5) {
    border-right: none;
}
.five-boxes .box:last-child {
    border-right: none;
}

.five-boxes h5 {
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 10px;
}

.five-boxes p {
    margin: 0;
    font-size: 15px!important;
    font-size: 0.9rem;
}

/* fin css section 4 page proros */

.five-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.five-boxes .box {
  flex: 1;
  min-width: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* Make all <h5> have the same height */
.five-boxes .box h5 {
  min-height: 60px; /* adjust to your design */
  display: flex;
  align-items: center;
}

/* Normal paragraph */
.five-boxes .box p {
  margin-top: 10px;
}


@media (min-width: 576px) and (max-width: 1024px){
    .about-section {
    margin-top: 14%;
}
}