/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Header Styling */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px; /* Adjusted padding */
  background-color: #333;
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-sizing: border-box;
}

header h4 {
  margin: 0;
  font-size: 1.5rem;
}

/* Navigation Styling */
nav {
  flex: 1;
  display: flex;
  justify-content: center; /* Centers the nav menu */
}

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

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #7a7a7a;
}

/* Main Content Styling */
main {
  margin-top: 80px; /* Leaves space for the fixed header */
  padding: 20px;
}

section {
  margin-bottom: 40px;
}

h1, h2 {      
  color: #333;
}

/* --- Contact Page Styles --- */

.contact-info {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-info a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  color: #7a7a7a;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background-color: #333;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #555;
}
