body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #000000; /* Black color from the logo */
}

header {
    background-color: #2B9B3C; /* Green color from the logo */
    padding: 10px;
    text-align: center;
    color: white;
}

/*
header {
    background-image: url('/slideshow/1.jpg'); !* Use the image as the background *!
    background-size: cover; !* Ensure the image covers the entire header *!
    background-position: center; !* Center the image within the header *!
    padding: 20px;
    text-align: center;
    color: white;
}
*/

header img {
    max-width: 200px;
    height: auto;
}

/* Navbar styles */
nav {
    background-color: #000000; /* Black background */
    width: 100%;
    padding-top: 5px; /* Adds space between header and navbar */
    padding-bottom: 5px; /* Adds padding below links to ensure the navbar looks distinct */
}

nav ul {
    list-style-type: none;
    margin: 0 auto; /* Center the entire ul within the nav */
    padding: 0;
    display: flex;
    justify-content: center; /* Center the nav items horizontally */
    flex-wrap: nowrap; /* Prevent items from wrapping to a new line */
}

nav ul li {
    margin: 0 10px; /* Decrease space between each nav item */
}

nav ul li a {
    display: block;
    padding:5px 20px; /* Adjust padding to make buttons a bit narrower */
    color: #FFFFFF; /* White text */
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s; /* Smooth transition for hover effect */
    white-space: nowrap; /* Prevent text from wrapping */
}


nav ul li a:hover {
    background-color: #2B9B3C; /* Green color from the logo for hover effect */
    color: #FFFFFF;
}

h1, h2 {
    color: #000000; /* Black color from the logo */
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 10px;
}

p, ul {
    margin-bottom: 1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

.pricing-list {
    list-style-type: none;
    padding-left: 0;
}

.pricing-list li {
    margin-bottom: 10px;
    font-weight: bold;
}

.note {
    font-style: italic;
    margin-top: 20px;
}

.content {
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 20px auto;
}

footer {
    background-color: #2B9B3C; /* Green color from the logo */
    padding: 10px;
    text-align: center;
    color: white;
    font-size: 0.9em;
}

.small-carousel {
    max-width: 700px; /* Adjust the width as needed */
    margin: 0 auto; /* Center the carousel */
}

.small-carousel .carousel-inner {
    max-height: 300px; /* Adjust the height as needed */
}

.small-carousel .carousel-item img {
    height: 300px; /* Match this height with carousel-inner height */
    object-fit: cover; /* Ensures the images fit well within the container */
}

h3.text-center a {
    font-size: 1.25rem; /* Adjust to desired size */
    display: inline-block; /* Helps with line breaking if needed */
    word-break: break-word; /* Allows the email to break if necessary */
    color: inherit; /* Keeps the color consistent with surrounding text */
    text-decoration: none; /* Optional: remove underline if not desired */
}

/* Additional media query for small screens if needed */
@media (max-width: 576px) {
    h3.text-center a {
        font-size: 1rem; /* Ensure it's readable on small screens */
    }
}