/* General Styles */
body {
    font-family: 'Roboto', sans-serif; /* Updated to Roboto for a modern, clean look */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background: #FDFFE7; /* Set the main background to match the logo font */
}

header {
    background: url('background.jpeg') no-repeat center center; /* Replace with your image path */
    background-size: cover; /* Ensures the image covers the entire background */
    background-position: center calc(55% - 25px); /* Moves the image 20px to the left */
    color: #FDFFE7; /* Light text for contrast */
    padding: 2rem 1rem;
    text-align: center;
}

.logo {
    max-width: 300px; /* Adjust size for the logo */
    height: auto;
    margin-bottom: 1rem;
}

header .cta-button {
    background: #333;
    color: #FDFFE7;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 1rem;
    display: inline-block;
}

/* Navigation Styles */
nav {
    background: #333;
    color: #FDFFE7;
    text-align: center;
    padding: 0.5rem 0;
}

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

nav ul li {
    display: inline;
    margin: 0 1rem;
}

nav ul li a {
    color: #FDFFE7;
    text-decoration: none;
}

/* Container */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Section Styles */
section {
    padding: 2rem 1rem;
}

h1, h2, h3 {
    font-weight: 700; /* Bold for headings */
    margin-bottom: 1rem;
}

h1 {
    color: #FDFFE7; /* Light color for header titles */
}

h2, h3 {
    color: #262422; /* Dark color for subsections */
}

/* Form Styles */
form label {
    display: block;
    margin-top: 1rem;
}

form input, form textarea, form button {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #262422; /* Matches the dark header color */
    color: #FDFFE7; /* Light text for readability */
    border: 1px solid #FDFFE7; /* Subtle border for visibility */
    border-radius: 5px; /* Smooth rounded corners */
    font-size: 1rem; /* Consistent font size */
}

form button {
    background: #262422;
    color: #FDFFE7;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: #333;
    color: #FDFFE7;
    text-align: center;
    padding: 1rem 0;
}

/* Benefits Section */
#benefits {
    background: #FDFFE7;
    padding: 2rem 1rem;
    margin: 2rem 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

#benefits ul {
    list-style: disc;
    padding-left: 1.5rem;
}

#benefits ul li {
    margin-bottom: 0.5rem;
}

#benefits ul li strong {
    color: #262422;
}

/* Services Section */
#services p {
    margin-bottom: 1rem;
}

#services ol {
    list-style: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

#services ol li {
    margin-bottom: 0.5rem;
}

/* Style for links in the contact section */
#contact a {
    color: #333; /* Match the dark text color used elsewhere */
    text-decoration: none; /* Remove the underline for a cleaner look */
}

#contact a:hover {
    text-decoration: underline; /* Add underline on hover for clarity */
}

@media (max-width: 768px) {
    body {
        overflow: hidden; /* Prevent unintended scrolling */
    }
}

html, body {
    scroll-behavior: smooth; /* Ensures smooth scrolling */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Instagram Link in Navigation */
nav ul li a img {
    margin-right: 5px; /* Space between icon and text */
    vertical-align: middle;
}

/* Instagram Icon in Footer */
footer a img {
    transition: transform 0.3s ease-in-out;
}

footer a img:hover {
    transform: scale(1.2); /* Slight zoom effect on hover */
}