body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    margin-top: 20px;
}

.features-list {
    list-style-type: none;
    padding: 0;
}

.features-list li:before {
    content: '• ';
    color: #0056b3;
}

.logo-quote-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: left;
    width: 100%;
}

@media (min-width: 768px) {
    .logo-quote-container {
        flex-direction: row;
    }
}

.img-fluid {
    max-width: 75%; /* Small screens */
    height: auto;
    margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
    .img-fluid {
        max-width: 25%; /* Larger screens */
    }
}

.quote-text {
    font-style: italic;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    max-width: 600px;
    margin: auto;
}


/* this is all for the carousels*/

.testimonials {
    padding: 2rem 0; /* Adjust padding for the section */
}
.supporters img {
    max-height: 200px; /* Adjust this value for the desired size */
    width: auto; /* Maintain aspect ratio */
}
.carousel-inner {
    /*display: flex;*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px; /* Adjust as needed for height */
    text-align: center; /* Center text inside the carousel */
}

.carousel-item img {
    max-width: 100%; /* Ensures the image doesn't exceed its container */
    height: auto; /* Maintains the original aspect ratio */
}

.carousel-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px; /* Ensures all items are the same height */
    padding: 1rem; /* Add some padding for better spacing */
}
.carousel-item p.lead {
    font-size: 1.5rem; /* Adjust for larger text */
    margin-bottom: 0.5rem; /* Space between text and attribution */
}
.carousel-item small {
    font-size: 1rem;
    color: #6c757d; /* Optional: muted color for attribution */
}
.quote-text {
    margin-top: 1rem;
    font-size: 1rem; /* Adjust text size if needed */
}
.testimonial-text {
    max-width: 600px; /* Set a desired maximum width */
    margin: 0 auto; /* Center the text container */
    text-align: center; /* Ensure text alignment remains centered */
}

/* Make the prev/next icons visible */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Add a semi-transparent background for visibility */
    border-radius: 50%; /* Optional: make the icons circular */
    width: 30px; /* Adjust icon size */
    height: 30px;
}

/* Optional: Add hover effect for better usability */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* this is all for the carousels*/