.fundraiser-container {
    max-width: 75rem; /* 1200px */
    margin: 2.5rem auto; /* 40px */
    padding: 1.25rem; /* 20px */
    background-color: #ffffff;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1); /* 4px 10px */
    border-radius: 0.5rem; /* 8px */
}

.fundraiser-header {
    text-align: center;
    margin-bottom: 1.875rem; /* 30px */
}

.main-image {
    text-align: center;
    margin-bottom: 1.875rem; /* 30px */
}

.main-image img {
    max-width: 80%;
    max-height: 25rem; /* 400px */
    object-fit: cover;
    border-radius: 0.625rem; /* 10px */
}

.details-section {
    text-align: center;
}

.details-section h5 {
    font-size: 1.5rem;
    font-weight: bold;
}

.details-section p {
    font-size: 1.2rem;
    color: #666;
}

.progress-container {
    margin-top: 1.25rem; /* 20px */
    text-align: center;
}

.progress-container .progress-bar {
    background-color: #28a745;
}

.additional-images-container {
    margin-top: 2.5rem; /* 40px */
}

.banner {
    display: flex;
    flex-wrap: wrap;
    background-color: #f9f9f9;
    border-radius: 0.625rem; /* 10px */
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1); /* 4px 8px */
    margin-bottom: 1.25rem; /* 20px */
    overflow: hidden;
}

.banner img {
    flex: 1 1 50%;
    object-fit: cover;
    max-height: 12.5rem; /* 200px */
}

.banner-content {
    flex: 1 1 50%;
    padding: 1.25rem; /* 20px */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-content h6 {
    font-size: 1.5rem;
    margin-bottom: 0.625rem; /* 10px */
}

.banner-content p {
    margin-bottom: 0.625rem; /* 10px */
}

.banner-content .price {
    font-weight: bold;
    font-size: 1.2rem;
}

.add-to-cart-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.625rem 0.9375rem; /* 10px 15px */
    border-radius: 0.3125rem; /* 5px */
    transition: background-color 0.3s ease;
    align-self: start;
}

.add-to-cart-btn:hover {
    background-color: #0056b3;
}

.container .row {
    background-color: #f9f9f9;
    border-radius: 0.625rem; /* 10px */
    box-shadow: -0.25rem 0.25rem 0.125rem rgb(156, 230, 246); /* -4px 4px 2px */
    padding: 1.25rem; /* 20px */
}

.container .row img {
    width: 100%; /* Ensures consistent scaling for images */
    max-width: 9.375rem; /* 150px */
    height: 9.375rem; /* 150px */
    object-fit: cover;
    border-radius: 0.625rem; /* 10px */
    margin-bottom: 0.625rem; /* 10px */
}

.container .row h5 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.625rem; /* 10px */
}

.container .row .fs-5 {
    font-size: 1.2rem;
    font-weight: bold;
}

.container .row .btn {
    font-size: 1rem;
    padding: 0.5rem 0.9375rem; /* 8px 15px */
    border-radius: 0.3125rem; /* 5px */
    transition: background-color 0.3s ease;
}

.container .row .btn:hover {
    background-color: #0056b3; /* Darker blue hover effect */
    color: white;
}

@media (max-width: 48rem) { /* 768px */
    .container .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .container .row img {
        margin-bottom: 1.25rem; /* 20px */
    }
}
