/* General Styles */
body {
    font-family: 'Super Clarendon', serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2; /* Light grey background */
    color: #333; /* Dark grey text */
}

/* Header Styling */
header {
    background-color: #fff; /* White background for the header */
    padding: 20px 0; /* Add padding around the header content */
    border-bottom: 1px solid #ddd; /* Light grey border to separate from content below */
    position: relative; /* Position relative for positioning the menu toggle button */
}

/* Logo Container Styling */
header .logo-container {
    display: flex; /* Use flexbox layout */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically within the container */
    max-width: 100%; /* Ensure the container fits within the header */
    margin: 0 auto; /* Center the container in the header */
    text-align: center; /* Center the text */
    margin-bottom: 20px; /* Increase space below the logo container */
}

/* Logo Image Styling */
header .logo-container .logo {
    max-width: 150px; /* Adjust the width of the logo image */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 10px; /* Space between image and text */
}

/* Logo Text Styling */
header .logo-container .logo-text {
    font-family: 'Super Clarendon', serif; /* Apply Super Clarendon font */
    font-size: 24px; /* Adjust text size as needed */
    line-height: 1.2; /* Adjust line height */
    color: #333; /* Dark grey text color for good contrast */
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Show ellipsis if text overflows */
}

/* Navigation Bar Styling */
nav {
    background-color: #fff; /* White background for navigation */
    padding: 10px 0; /* Padding around navigation items */
    border-top: 1px solid #ddd; /* Light grey border to separate from the header */
    border-bottom: 1px solid #ddd; /* Optional border below navigation */
    text-align: center; /* Center navigation items */
}

/* Navigation List Styling */
nav ul {
    list-style: none; /* Remove default list styling */
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block; /* Change to inline-block to allow margins */
    margin: 0 15px; /* Space between menu items */
}

nav a {
    color: #333; /* Dark grey links */
    text-decoration: none;
    font-size: 18px;
}

nav a:hover {
    color: #000; /* Darker color on hover */
}

/* Hero Section */
.hero {
    background-color: #555; /* Medium grey for hero background */
    color: #fff; /* White text for hero */
    padding: 20px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    margin: 0;
    color: #f5f5f5; /* Very light grey for hero title */
}

.hero p {
    font-size: 24px;
    margin: 20px 0;
    color: #ddd; /* Light grey for hero paragraph */
}

.hero .cta-button {
    background-color: #777; /* Grey for button background */
    color: #fff; /* White text for button */
    padding: 15px 30px;
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border-radius: 5px;
}

.hero .cta-button:hover {
    background-color: #666; /* Darker grey on hover */
}

.banner {
    overflow: hidden; /* Hide any overflow from the banner image */
    margin: 0;
    padding: 0;
}

/* Banner Container */
.banner .container {
    width: 100%; /* Full width of the viewport */
    margin: 0; 
    padding: 0; /* Remove padding to ensure the image is full-width */
}

/* Banner Image */
.banner-image {
    display: block; /* Remove any inline spacing */
    width: 100%; /* Ensure image stretches to full width of its container */
    height: auto; /* Maintain aspect ratio of the image */
    object-fit: cover; /* Cover the container without stretching */
}

/* About Section */
.about .container {
    padding: 60px 20px;
    text-align: center;
    color: #444; /* Darker grey text */
    width: 90%; /* Adjust width as needed */
    max-width: 1200px; /* Maximum width of the container */
    margin: 0 auto; /* Center container horizontally */
}

.about h2 {
    font-size: 36px;
    color: #333; /* Dark grey for about section title */
}

.about p {
    font-size: 20px;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: #f5f5f5; /* Light grey background for services section */
    color: #333; /* Dark grey text color */
}

.services h3 {
    font-size: 36px;
    text-align: center;
    color: #444; /* Darker grey for services title */
    margin-bottom: 40px; /* Space below the section title */
}

.service-items {
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Wrap items to the next line */
    justify-content: center; /* Center items horizontally */
    gap: 30px; /* Space between cards */
}

.service-item {
    background-color: #fff; /* White background for each card */
    border: 1px solid #ddd; /* Light grey border */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Padding inside each card */
    max-width: 500px; /* Limit the width of each card */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center; /* Center text inside cards */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.service-item:hover {
    transform: translateY(-10px); /* Lift card on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.service-item h3 {
    font-size: 28px;
    color: #555; /* Medium grey for card titles */
    margin-bottom: 15px; /* Space below title */
}

.service-item p {
    font-size: 18px;
    color: #666; /* Medium grey for card text */
    margin: 0; /* Remove margin for paragraph */
}

.service-item .lm-button {
    background-color: #777; /* Grey for button background */
    color: #fff; /* White text for button */
    padding: 15px 30px;
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border-radius: 5px;
}

.service-item .lm-button:hover {
    background-color: #666; /* Darker grey on hover */
}

/* Testimonials */
.testimonials .container {
    padding: 60px 20px;
    text-align: center;
    color: #444; /* Darker grey text */
    width: 90%; /* Adjust width as needed */
    max-width: 1200px; /* Maximum width of the container */
    margin: 0 auto; /* Center container horizontally */
}

.testimonials h2 {
    font-size: 36px;
    color: #333; /* Dark grey for about section title */
}

.testimonials p {
    font-size: 20px;
}

/* Footer */
footer {
    font-family: 'Super Clarendon', serif;
    background-color: #333; /* Dark grey footer */
    color: #ccc; /* Light grey text */
    padding: 20px 0;
    text-align: center;
}

footer .footer-links {
    margin-top: 10px;
    margin-bottom: 10px;
}

footer .footer-links a {
    color: #aaa; /* Medium grey for footer links */
    text-decoration: none;
    margin: 0 10px;
}

footer .footer-links a:hover {
    color: #fff; /* White on hover */
}

footer p {
    margin: 0;
    color: #888; /* Lighter grey for footer text */
}