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;
    }
}



.profile-heading {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.profile-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
}

.unique-features-heading {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #333;
    text-align: left;
    padding-left:15px;
}

.unique-features-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.unique-features-list li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.unique-features-list li::before {
    content: "\2022";  /* Bullet symbol */
    color: #FF7518;  /* Orange color */
    font-weight: bold;
    margin-right: 10px;
}


.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

.image-item {
    text-align: center;
    width: 23%; /* 4 items in one row */
    margin-bottom: 15px;
}

.image-item img {
    width: 200px;   /* Fixed width */
    height: 200px;  /* Fixed height */
    object-fit: cover; /* Ensures image scales properly */
    border: 2px solid #ccc; /* Optional border */
    border-radius: 5px;
}

.image-item p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .image-item {
        width: 48%; /* 2 items per row on medium screens */
    }
}

@media (max-width: 600px) {
    .image-item {
        width: 100%; /* 1 item per row on small screens */
    }
}