/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header and Navigation */
header {
    background: #2c3e50; /* Dark blue/grey */
    color: #fff;
    padding: 1rem 0;
    "text-align: center;"
}

/* Header and Navigation */
header {
    background: #2c3e50; /* Dark blue/grey */
    color: #fff;
    padding: 1rem 0;
}

/* Updated: Styles for the nav container to give it margin/padding */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 960px; /* This sets the maximum width of your navigation bar */
    margin: 0 auto;   /* This centers the nav container and provides horizontal margin */
    padding: 0 20px;  /* This adds 20px padding on the left and right inside the nav */
    /* If you want more space from the edges, increase the 20px to something like 30px or 40px */
}

header h1 {
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
    flex-shrink: 0;
}

nav ul {
    padding: 0;
    list-style: none;
    display: flex;
    margin-top: 0;
}

nav ul li {
    margin-left: 20px; /* Spacing between nav items */
}

/* ... rest of your CSS ... */

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #3498db; /* Bright blue */
}

/* Main Content Area */
main {
    padding: 20px;
    max-width: 1100px;
    margin: 20px auto;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* Hero Section (Home Page) */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: #ecf0f1; /* Light grey */
    margin-bottom: 30px;
    border-radius: 8px;
}

.hero h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

/* Buttons */
.button {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.button:hover {
    background: #2980b9;
}

/* Services Section (Home Page) */
.services ul {
    list-style: disc;
    padding-left: 20px;
}

.services ul li {
    margin-bottom: 10px;
}

/* About Content */
.about-content h2, .about-content h3 {
    color: #2c3e50;
    margin-top: 25px;
}

.about-content ul {
    list-style: square;
    padding-left: 20px;
}

.about-content ul li {
    margin-bottom: 8px;
}

.about-content strong {
    color: #3498db;
}

/* Contact Form */
.contact-form-section h2 {
    text-align: center;
    color: #2c3e50;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 30px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fdfdfd;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: calc(100% - 22px); /* Adjust for padding and border */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing */
}

.contact-form button {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}

/* Contact Info */
.contact-info {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 8px;
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
}


/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #2c3e50;
    color: #fff;
    margin-top: 30px;
}