html {
  overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns in each row */
    gap: 20px; /* Adjust gap between logos as needed */
    justify-content: center;
    padding: 20px;
}

.logo {
    text-align: center;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 10px;
}

.logo img {
    max-width: 100%;
    max-height: 100px; /* Adjust logo height as needed */
}
/* Style for the "Read More" link */
.read-more-link {
    color: blue; /* Link text color */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Bold text */
    margin-left: 10px; /* Add spacing to the left of the link */
    
}

/* Style for the "Read More" link when hovered */
.read-more-link:hover {
    text-decoration: underline; /* Underline on hover */
}

#hidden-paragraph {
    display: none; /* Initially hide the paragraph */
}

