
body {
    margin: 0;
    padding: 0;
    background-color: white;
    /* Body content background color */
    /* font-family: "Belleza-Regular", sans-serif; */
    /* Use the custom font */
    overflow-x: hidden;
    /* Prevent both horizontal and vertical scrolling */
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #fda500;
    /* Header background color */
    padding: 2px;
    text-align: center;
    position: sticky;
    top: 0; /* Stick the header at the top of the viewport */
    z-index: 100; /* Ensure it's above other content */
}
/* Style for the logo images */
.header-logo {
    max-width: 7rem; /* Adjust as needed */
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

/* Style for the header text */
.header-text {
    display: inline-block;
    font-size: 24px; /* Adjust as needed */
    font-weight: bold;
    vertical-align: middle;
    margin-right: 10px;
    text-transform: uppercase;
    color: #d6531f;
}

header h1 {
    margin: 0;
}

/* Style for the navigation */
nav {
    width: 100%; /* Ensure the nav takes full width */
    padding: 2rem;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex; /* Use flexbox for horizontal alignment */
    justify-content: center; /* Horizontally center the list items */
}

/* Style for the navigation list items */
nav li {
    margin: 0 10px; /* Add horizontal spacing between items */
}
/* Style for the navigation links */
nav a {
    text-decoration: none;
    /* color: #fff; */
    font-weight: bold;
    font-size: 16px;
}

/* Style for circular images */
.circular-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    /* Maintain aspect ratio and crop as needed */
    object-position: center;
    /* Center the image within the circle */
    margin: 10px;
    /* Adjust the margin as needed */
}

.content {
    max-width: 63rem;
    margin: 0 auto;
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    /* Enable vertical scrolling within the content area */
    /* max-height: calc(100vh - 20rem); */
    /* Adjust based on header and footer heights */
}

footer {
    /* background-color: #fda500; */
    background-color: #fda500;
    /* Footer background color */
    /* padding: 20px; */
    text-align: center;
    /* width: 100%; */
    /* position: sticky; */
    /* bottom: 0; */
    /* Stick the footer to the bottom of the viewport */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
/* Style for the Google Map iframe */
.map-iframe {
    width: 20rem;
    height: 20rem; /* Adjust the height as needed */
    border: none; /* Remove the iframe border */
    padding-left: 11rem;
}

/* Style for the About Us section */
.about-us {
    flex: 1;
    width: 50%; /* Adjust the width as needed */
    margin: 0; /* Reduce the margin */
}

/* Style for the address */
.address {
    flex: 1;
    /* text-align: right; */
    height: 25rem; /* Adjust the height as needed */
    width: 50%; /* Adjust the width as needed */
    padding-right: 10rem;
}
/* Style for headings */
.section-heading {
    font-weight: bold;
}

.lineclass {
    text-decoration: underline
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    justify-items: auto;
    align-content: center;
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    row-gap: 8px;
}

.gallery {
    padding: 100px;
}

.gallery img {
    max-width: 100%;
    align-self: center;
}

div>img {
    position: relative;
    top: 50%;
    left: 50%;
    min-height: 70%;
    min-width: 100%;
    transform: translate(-50%, -50%);
}

/* Style for the dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Style for the dropdown button (the Charity Programs link) */
.dropdown .dropbtn {
    /* background-color: #fda500;
    color: #ffffff; */
    padding: 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Style for the dropdown content (the program links) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fda500;
    min-width: 160px;
    z-index: 1;
}

/* Style for the program links in the dropdown */
.dropdown-content a {
    color: #ffffff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color on hover */
.dropdown-content a:hover {
    background-color: #ffcc00;
}

/* Show the dropdown content when hovering over the dropdown button */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Align the dropdown content to the right */
.dropdown-content {
    right: 0;
}

/* Style for the dropdown arrow (you can customize this) */
.dropdown .dropbtn::after {
    content: '\25BC';
    font-size: 12px;
    margin-left: 5px;
}

.medical-description-class {
    padding: 1rem;
}

.about-img-description {
    font-style: oblique;
    font-size: 18px;
    padding: 0 1rem;
}