/* styles.css */

/* Reset default margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set up the overall layout and styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px;
}

/* Navigation */
nav {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
}

.nav-links {
  list-style: none;
}

.nav-links li {
  display: inline-block;
  margin-right: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

.logo img {
	max-width: 460px;
}

/* Header (Hero section) */
.hero {
  text-align: center;
  margin-top: 80px;
}

nav h1 {
  font-size: 36px;
}

nav h2,
.hero h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #777;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #555;
}

/* Services section */
.section {
  margin-bottom: 80px;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 40px;
}

.service {
  text-align: center;
  margin-bottom: 40px;
}

.service img {
  max-width: 100%;
}

.service h3 {
  font-size: 24px;
  margin: 20px 0;
}

.service p {
  color: #777;
}

/* Contact section */
form {
  margin-top: 40px;
}

input[type="text"],
input[type="email"],
textarea {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button[type="submit"] {
  display: inline-block;
  padding: 12px 24px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #555;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer p {
  font-size: 14px;
}

