body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}
.reinforcement-box {
    padding: 50px;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    text-align: center;
    margin: 20px auto;
    max-width: 1300px;
    border-radius: 8px;
}
.reinforcement-heading {
    margin-bottom: 20px;
    font-size: 2.7rem;
    color: #333;
}
.reinforcement-text {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* For tablets (max-width: 768px) */
@media (max-width: 768px) {
    .reinforcement-box {
        padding: 30px;
    }

    .reinforcement-heading {
        font-size: 1.8rem;
    }

    .reinforcement-text {
        font-size: 0.9rem;
    }
}

/* For mobile devices (max-width: 600px) */
@media (max-width: 600px) {
    .reinforcement-box {
        padding: 10px;
        margin: 10px auto;
    }

    .reinforcement-heading {
        font-size: 1.5rem;
    }

    .reinforcement-text {
        font-size: 0.875rem;
    }
}

  /* cards cards cards cards cards cards cards cards cards fa*/

.cards-container-custom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 30px auto;
    max-width: 1200px;
}
.custom-card-1, .custom-card-2, .custom-card-3 {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    flex: 1;
    box-shadow: none;
    border: none;
}
.custom-card-1 img, .custom-card-2 img, .custom-card-3 img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
}
.custom-card-1 h2, .custom-card-2 h2, .custom-card-3 h2 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #333;
    text-align: center;
}
.custom-card-1 ul, .custom-card-2 ul, .custom-card-3 ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    color: #555;
    font-size: 1rem;
}
.custom-card-1 ul li, .custom-card-2 ul li, .custom-card-3 ul li {
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.custom-icon-1, .custom-icon-2, .custom-icon-3 {
    font-weight: bold;
    color:black;
}

/* For tablets (max-width: 768px) */
@media (max-width: 768px) {
    .cards-container-custom {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .custom-card-1, .custom-card-2, .custom-card-3 {
        padding: 15px;
    }

    .custom-card-1 h2, .custom-card-2 h2, .custom-card-3 h2 {
        font-size: 1.3rem;
    }

    .custom-card-1 ul li, .custom-card-2 ul li, .custom-card-3 ul li {
        font-size: 0.9rem;
    }
}

/* For mobile devices (max-width: 600px) */
@media (max-width: 600px) {
    .cards-container-custom {
        display: block;
        margin: 20px;
    }

    .custom-card-1, .custom-card-2, .custom-card-3 {
        padding: 10px;
        margin-bottom: 20px;
    }

    .custom-card-1 h2, .custom-card-2 h2, .custom-card-3 h2 {
        font-size: 1.2rem;
    }

    .custom-card-1 ul li, .custom-card-2 ul li, .custom-card-3 ul li {
        font-size: 0.85rem;
    }
}