/* styles.css */
body {
    background-color: #f2f2f2;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 80px; /* Increase spacing between body and header */
    padding-bottom: 40px; /* Decrease spacing between body and footer */
}

header {
    background-color: #16754F; /* Darker Green */
    color: #fff;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensure header is above other content */
}

.logo img {
    height: 90px;
    width: auto;
    margin-right: 10px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.offerings {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10px; /* Decrease spacing between sections */
    margin-bottom: 10px; /* Decrease spacing between sections */
}

.offering {
    width: 30%;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.offering:hover {
    transform: scale(1.05);
}

footer {
    background-color: #16754F; /* Darker Green */
    color: #fff;
    text-align: center;
    padding: 10px; /* Reduced padding */
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-right: 20px;
}

footer a:hover {
    text-decoration: underline;
}

.up-arrow {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #16754F;
    color: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001; /* Ensure it's above other content */
}

.up-arrow:hover {
    background-color: #135036; /* Darker shade when hovered */
}
