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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #eaeaea; /* Lighter background for better contrast */
    color: #222; /* Darker text for contrast */
}

/* Header and Navigation */
header {
    background-color: #fff; /* White background for header */
    color: #333; /* Dark text for contrast */
    padding: 1em;
    position: sticky;
    top: 0; /* Keeps navbar at the top of the page */
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.logo img {
    height: 50px; /* Adjust height as needed */
    width: auto;  /* Maintains aspect ratio */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1em;
}

nav ul li a {
    color: #333; /* Dark color for nav links */
    text-decoration: none;
    font-weight: bold;
}

/* Hover effect for links */
nav ul li a:hover {
    color: #ff7e5f; /* Accent color for hover */
}

/* Hero Section */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background for better text readability */
    padding: 2em;
    border-radius: 5px;
}

.hero-content h1 {
    font-size: 3em;
}

.hero-content p {
    margin: 1em 0;
}

.btn {
    background-color: #ff7e5f;
    color: white;
    padding: 0.8em 2em;
    border-radius: 5px;
    text-decoration: none;
}

/* Sections */
section {
    padding: 3em;
}

.about, .services, .contact {
    text-align: center;
}

/* Forms */
form {
    max-width: 500px;
    margin: 0 auto;
    padding: 1em;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
}

form input, form button {
    width: 100%;
    padding: 0.5em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

