/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Body Styling */
body {
    font-family: 'Lora', serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

/* Bold styling for Call-to-Action text */
.cta-text {
    font-weight: bold; /* Make the text bold */
    color: inherit; /* Keep the color consistent with the surrounding content */
}

/* Prevent page width shift when modal is open */
body.modal-open {
    overflow: hidden; /* Prevent scrolling */
    padding-right: 17px; /* Adjust for scrollbar width (commonly 17px) */
}

/* Modal Overlay - Hidden by Default */
.modal-overlay {
    display: none; /* Modal is hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 1000; /* Ensure it appears on top */
    justify-content: center;
    align-items: center;
    opacity: 0; /* Start fully transparent */
    transition: opacity 0.3s ease; /* Smooth fade-in effect */
}

/* Modal Content Box */
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto; /* Enable scrolling for large content */
    position: relative;
    transform: scale(0.9); /* Start slightly scaled down */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth scale and fade-in */
}

/* Close Button for Modal */
.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Show Modal with Animation */
.modal-overlay.active {
    display: flex;
    opacity: 1; /* Fully visible */
}

.modal-content.active {
    transform: scale(1); /* REturn to normal size */
    opacity: 1; /* Ensure content is fully visible */
}

#contact-modal-body {
    font-size: 1.2rem; /* Slightly larger text for readability */
    color: #00796b; /* Professional and calming color */
    line-height: 1.6; /* Better readability */
    padding: 1.5rem; /* Add spacing around the content */
    text-align: center; /* Center-align text for a clean look */
}

/* Hidden Content */
.hidden-content {
    display: none; /* Keep "Learn More" content hidden */
    visibility: hidden; /* Ensure it doesn't interfere with layout */
}

/* Base Section Styling */
.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Subtle section separators */
#services:before,
#contact:before,
#rates-section:before {
    content: '';
    display: block;
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: #eee;
    margin: 0 auto;
}

p {
    line-height: 1.8; /* Slightly taller line spacing for better readability */
    margin-bottom: 20px; /* Ensure consistent spacing between paragraphs */
}

/* Main section headings replacement */
h2 {
    font-size: 2.5rem;
    color: #333333;
    text-align: center;
    margin: 40px 0 30px 0;  /* Keeps your existing top margin */
    font-family: 'Lora', serif;
    font-weight: normal;  /* Ensures consistency */
}

/* Service titles and secondary headings */
h3 {
    font-size: 1.5rem;
    color: #00796b;    /* Match the inviting-header teal */
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: 'Lora', serif;
    font-weight: normal;
}

/* Default Transparent Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent; /* Fully transparent initially */
    color: white;
    transition: background 0.3s ease, backdrop-filter 0.3s ease; /* Smooth transition */
}

h4 {
    font-size: 1.25rem;
    color: #333333;
    margin-top: 25px;
    margin-bottom: 15px;
    font-family: 'Lora', serif;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 10px 0;
}

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

header nav ul li a {
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #FF6347; /* Highlight color */
    transform: scale(1.1); /* Slight zoom effect */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Add subtle shadow */
    transition: all 0.3s ease-in-out; /* Smooth transition */
}

/* Header Styling After Scrolling */
header.scrolled {
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent black */
    backdrop-filter: blur(5px); /* Slight blur effect for modern look */
}

/* Hamburger Menu (Default State) */
.hamburger-menu {
    display: none; /* Hidden by default on larger screens */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    top: 15px; /* Adjust based on logo height */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center alignment */
}

.hamburger-menu span {
    display: block;
    height: 3px; /* Thickness of each bar */
    width: 100%; /* Full width */
    background: #333; /* Color of the bars */
    border-radius: 3px; /* Slightly rounded corners */
    transition: all 0.3s ease; /* Smooth animation for transformations */
}

/* Mobile-Specific Styles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex; /* Show hamburger icon on mobile screens */
    }

    /* Style the dropdown menu */
    .nav-links {
        visibility: hidden; /* Hidden by default */
        opacity: 0; /* Fully transparent */
        transform: scaleY(0); /* Collapsed */
        position: absolute;
        top: 60px; /* Below the header */
        right: 0; /* Align to the right edge */
        width: 220px; /* Slightly wider */
        background: linear-gradient(135deg, rgba(51, 51, 51, 0.8), rgba(85, 85, 85, 0.8)); /* Gradient with transparency */
        padding: 15px 20px; /* Increased padding for a more spacious menu */
        border-radius: 8px; /* Rounder corners */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Soft shadow */
        z-index: 1000; /* Above overlay */
        display: flex; /* Use flexbox for layout */
        flex-direction: column; /* Stack items vertically */
        gap: 10px; /* Add spacing between items */
        transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
    }

    .nav-links.active {
        visibility: visible; /* Show menu */
        opacity: 1; /* Fully visible */
        transform: scaleY(1); /* Expand vertically */
    }

    .overlay {
        display: none; /* Hidden by default */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3); /* Semi-transparent black */
        z-index: 999; /* Below the menu but above the page content */
    }

    /* Show overlay when active */
    .overlay.active {
        display: block;
    }

    .nav-links li {
        margin: 10px 0; /* Space between links */
    }

    .nav-links a {
        color: white; /* Text color */
        text-decoration: none; /* Remove underlines */
        font-size: 1rem;
        text-align: center; /* Center-align the links */
        transition: color 0.3s ease-in-out;
    }

    .nav-links a:hover {
        color: #FF6347; /* Highlight color on hover */
    }

    .nav-links a:focus {
        outline: 2px dashed #FF6347; /* Custom dashed outline for focus */
        outline-offset: 4px; /* Adds spacing between the outline and text */
    }
}

.hamburger-menu span {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hamburger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: #FF6347; /* Highlight active color */
}

.hamburger-menu.open span:nth-child(2) {
    opacity: 0; /* Hide middle bar */
}

.hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: #FF6347; /* Highlight active color */
}

/* Parallax Background for Hero Section */
.hero-logo {
    position: fixed; /* Fix the logo's position relative to the viewport */
    top: 50px; /* Position it at the top-left corner */
    left: 50px;
    width: 150px;
    height: auto;
    z-index: 100; /* Place the logo at the same layer as the background */
    opacity: .9;
}

.hero-logo img {
    border-radius: 20px; /* Add rounded corners to the logo */
    width: 100%; /* Ensure the image takes the full width of the container */
    height: auto; /* Maintain aspect ratio */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add a soft, raised shadow */
}

/* Fade effect for logo on scroll */
.hero-logo img.scrolled {
    opacity: 0.2; /* Faded opacity */
    transition: opacity 0.5s ease-in-out; /* Smooth fading */
}

/* Adjust logo size on tablets */
@media (max-width: 1024px) {
    .hero-logo {
        max-width: 120px; /* Adjust to a smaller size for tablet screens */
        top: 15px;
        left: 15px;
    }
}

/* Adjust logo size on mobile */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 100px; /* Smaller size for mobile devices */
        top: 10px;
        left: 10px;
    }
}

/* Further adjust for very small mobile screens */
@media (max-width: 480px) {
    .hero-logo {
        max-width: 70px; /* Slightly smaller for extra small devices */
        top: 10px; /* Align slightly better */
        left: 10px;
    }

    .hero-logo img {
        border-radius: 10px; /* Adjust roundness */
    }
}

/* Parallax Background for Hero Section */
#hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    background-image: url('../images/bkgd.webp?v=<?php echo filemtime("images/bkgd.webp"); ?>'); /* Cache busting */
    background-size: cover;
    background-position: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#hero::before {
    content: ""; /* Add a pseudo-element for the background */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Slightly larger to allow smooth parallax scrolling */
    background-image: url('../images/bkgd.webp?v=<?php echo filemtime("images/bkgd.webp"); ?>'); /* Cache busting */
    background-size: cover;
    background-position: center;
    will-change: transform; /* Optimizes for GPU rendering */
    transform: translateY(0); /* Default position */
    z-index: -1; /* Ensure it's behind the content */
}


/* Logo scaling */
.logo {
    width: 100%;
    height: auto;
}

/* Adjust hero text position */
.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    top: 35%; /* Adjust as necessary */
    transform: translateY(-35%);
    text-align: left;
    padding-left: 200px;
    padding-right: 20px; /* Added padding to avoid button overflow */
    z-index: 1;
}

.hero-text {
    max-width: 60%; /* Limit the width of the text container */
    margin-bottom: 30px; /* Added margin to avoid button overlap */
}

.cta-button {
    background-color: #FF6347;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #FF4500; /* Darker shade on hover */
    transform: scale(1.1); /* Slightly enlarge */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add shadow */
}

/* Additional spacing for small screens */
@media only screen and (max-width: 768px) {
    .hero-text {
        max-width: 100%;
        padding-left: 20px; /* Reduced padding for mobile view */
        padding-right: 20px;
    }

    .cta-button {
        margin-top: 15px; /* Adjust button margin on smaller screens */
    }

    .hero-content {
        position: relative; /* Ensure proper stacking context */
        z-index: 1; /* Higher than .hero-logo so it scrolls over */
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    #hero::before {
        transform: none; /* Disable the parallax effect */
        height: 100%; /* Ensure the image fills the section */
    }
}


/* About Section Styling */
#about {
    padding: 60px 20px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    #about {
        padding: 30px 20px; /* Same padding as larger screens, but reduced top/bottom */
    }

    .about-content {
        flex-direction: column; /* Stack text and image vertically */
        align-items: flex-start; /* Align to the left */
        text-align: left; /* Keep text aligned to the left */
        padding-left: 10px; /* Add a small buffer from the edge */
    }

    .about-text {
        max-width: 100%; /* Allow text to span full width */
        margin-bottom: 20px; /* Add space below the text */
    }

    .about-image {
        max-width: 80%; /* Ensure image scales well */
        align-self: center; /* Center image while text stays left-aligned */
    }
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text {
    max-width: 55%;
}

/* Small and faded "About" heading */
.about-placeholder {
    font-size: 0.9em; /* Make "About" smaller */
    color: rgba(0, 0, 0, 0.4); /* Light grey, faded text */
    margin-bottom: 10px; /* Some space below */
    text-transform: uppercase; /* Optional: makes it uppercase */
    font-family: 'Arial', sans-serif; /* A simple sans-serif font */
}

/* Welcome heading update */
.inviting-header {
    font-size: 2.5rem; /* Match h2 size */
    color: #00796b;    /* Keep the teal for emphasis */
    font-family: 'Lora', serif;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: normal;
}

.about-text p {
    font-family: 'Georgia', serif; /* More finished font for paragraphs */
    font-size: 1.1em;
    line-height: 1.8; /* Increase line height for readability */
    margin-bottom: 20px; /* Space between paragraphs */
}

/* Service Section Spacing and Global Paragraph/Heading Spacing */

/* Add consistent spacing between paragraphs */
p {
    margin-bottom: 20px; /* Spacing below all paragraphs */
}

/* Add top and bottom margins for section headings */
h3 {
    color: #004d40; /* Darker green for the section headings */
    font-size: 1.5em;
    margin-top: 40px; /* Extra space before section headings */
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

h4 {
    margin-top: 30px; /* Space above h4 headings */
    margin-bottom: 20px; /* Space below h4 headings */
}

/* Ensure there's adequate spacing around all sections */
.section-content {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    background-color: #fff;
    margin-bottom: 40px; /* Space between different sections */
}

/* Additional mobile responsiveness for spacing */
@media (max-width: 768px) {
    p {
        margin-bottom: 15px; /* Reduced spacing on smaller screens */
    }

    h3 {
        margin-top: 30px;
        margin-bottom: 15px;
    }

    h4 {
        margin-top: 25px;
        margin-bottom: 15px;
    }
}

/* About Image Styling */
.headshot-container {
    max-width: 200px; /* Increase image container size */
    margin: 0 auto;
    text-align: center;
}

.headshot {
    border-radius: 15px; /* Rounded corners */
    width: 100%; /* Fill the container */
    height: auto; /* Maintain aspect ratio */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Name Container Styling */
.name-container {
    text-align: center; /* Center the text below the image */
    margin-top: 10px; /* Space between the image and the text */
}

.name-title {
    font-family: 'Lora', serif; /* Match font style */
    font-size: 1em; /* Slightly smaller font size */
    font-weight: normal; /* Reduce weight for subtle emphasis */
    color: #555; /* Softer color for better harmony */
    margin: 0;
}

/* Align About Section Content */
.about-content {
    display: flex;
    justify-content: space-between; /* Align text and image side by side */
    align-items: center; /* Center items vertically */
    gap: 20px; /* Adjust spacing between text and image */
    flex-wrap: wrap; /* Stack content on smaller screens */
    padding: 20px;
}

.about-text {
    flex: 2;
    max-width: 600px;
}

.about-image {
    flex: 1;
    text-align: center;
}


/* Name Container Styling */
.name-container {
    text-align: center; /* Center the text below the image */
    margin-top: 10px; /* Add space between the image and the text */
}

/* Name Title Styling */
.name-title {
    font-family: 'Lora', serif; /* Use the same font as the rest of the site */
    font-size: 1.2em; /* Make it slightly larger for visibility */
    font-weight: bold; /* Add weight for emphasis */
    color: #333; /* Ensure it contrasts well with the background */
    margin: 0; /* Remove default margins */
}

/* Services Section Styling */
#services {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
    z-index: 1;
}

.services-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
    margin: 20px;
    padding: 20px 20px 15px;
    background-color: transparent;
    border-radius: 10px;
    position: relative;
}

.service-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 12px; /* margin below image */
}

.service p {
    font-size: 1.1rem; /* slightly enlarges text */
    line-height: 1.4;
    margin-bottom: 12px; /*Reduces space between text and button */
    color: #333;
    padding: 0 5px; /* Reduced side padding */
}

.learn-more-btn {
    background: #006400;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 0px; /* Removed top margin to control space from paragraph */
    font-family: 'Lora', serif;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.learn-more-btn:hover {
    background: #004d00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.learn-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.expanded-content {
    text-align: left;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    margin-top: 0;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.5s ease-out,
                padding 0.3s ease-out,
                opacity 0.3s ease-out,
                transform 0.3s ease-out,
                margin-top 0.3s ease-out;
}

.expanded-content.active {
    max-height: 1000px;
    padding: 15px;
    margin-top: 15px;
    border: 1px solid #eee;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    opacity: 1;
    transform: translateY(0);
}

/* Special case for expanded content h4 */
.expanded-content h4 {
    font-size: 1.25rem;        /* Match standard h4 size */
    color: #00796b;            /* Match our teal color theme */
    margin-top: 0;             /* Remove top margin in expanded content */
    margin-bottom: 20px;
    font-family: 'Lora', serif;
    font-weight: bold;
}

.expanded-content .cta-text {
    font-weight: bold;
    color: #333;
}

.expanded-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
    font-family: 'Lora', serif;
}

.service:has(.expanded-content.active) {
    max-width: 400px;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

#disclaimer-section {
  text-align: left; /* Align text to the left within the block */
  margin: 20px auto 0; /* Center the block horizontally */
  padding: 10px;
  margin-bottom: 0; /* this change had no effect */
  font-size: 0.9rem;
  color: #555; /* Subtle gray for text */
  background-color: #f9f9f9; /* Light background for separation */
  border-radius: 8px; /* Rounded corners for a softer look */
  max-width: 600px; /* Limit the width for readability */
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); /* Optional subtle shadow */
  line-height: 1.6; /* Add line spacing for readability */
}

#disclaimer-section p {
    margin: 0;
    height: auto;
}

/* Contact Section Styling */
#contact {
    background-color: #fff;
    width: 100%;
    margin: 0;
    max-width: none;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

/* Emergency Notice Styling */
.emergency-notice {
    color: #d32f2f;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 10px;
    font-size: 1.1rem;
    background: none;
    border: none;
    box-shadow: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 30px;
}

/* Form Styling */
form {
    flex: 2;
    max-width: 600px;
    margin: 0;
    text-align: left;
    background: #f2f8f7;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

form div {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #007BFF;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

textarea {
    height: 120px;
    resize: vertical;
}

/* Contact Information Styling */
.contact-info-container {
    flex: 1;
    text-align: left;
    padding: 0 0 0 40px;
    background: transparent;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    line-height: 1.4;
}

.mailing-address {
    margin-top: 20px;
}

.mailing-address h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-disclaimer {
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px;
    text-align: left;
}

button[type="submit"] {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button[type="submit"]:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

button[type="submit"]:active {
    background-color: #003f7f;
    transform: scale(0.95);
}

/* Media query for mobile */
@media (max-width: 768px) {
    #contact {
        padding: 40px 0;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }
    
    form {
        padding: 20px;
    }
    
    .contact-info-container {
        padding: 0;
        margin-top: 30px;
    }
    
    input, textarea {
        font-size: 16px;
    }
}

#rates-section {
    background-color: #fff; /* Use a solid color for the background */
    padding: 20px; /* Adjust padding for spacing */
}

#rates-section .section-content {
    background-color: transparent; /* Ensure no additional background overrides */
    box-shadow: none; /* Remove shadow or framed effect */
    border: none; /* Remove border if it exists */
}

/* Rates Section Specific Styling */
.rates-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.rates-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.rates-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

#rates-section h2 {
    color: #333;
    margin-bottom: 30px;
}

#rates-section h3 {
    font-size: 1.5rem;
    color: #333333;    /* Changed from teal to standard dark gray */
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: 'Lora', serif;
    font-weight: normal;
}

#rates-section h4 {
    color: #333;
    margin-top: 30px;
}

#rates-section p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Mobile Responsiveness for Rates */
@media (max-width: 768px) {
    .rates-container {
        padding: 15px;
    }
    
    .rates-list li {
        font-size: 1rem;
    }
}

footer {
    text-align: center;
    padding: 20px 0; /* Add padding for vertical spacing */
    background-color: #f4f4f4; /* Light background for contrast */
    font-size: 0.9rem; /* Subtle, smaller text */
    color: #555; /* Slightly muted text color */
}