/* Basic reset and styling */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f6f9fb;
  color: #333;
}

header {
  background-color: #c77653;
  padding: 10px 0;
  color: #fff;
}

/* Logo container */
.logo-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo image */
.logo-container .logo {
  height: 80px;
  margin-right: 15px;
}

/* Wrapper around the logo to provide a dark orange circular background. The logo itself has transparent
   sky so the background color shows through. */
.logo-wrapper {
  width: 80px;
  height: 80px;
  background-color: #c77653;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  overflow: hidden;
}

/* Ensure the logo image scales nicely within the wrapper */
.logo-wrapper .logo {
  width: 100%;
  height: auto;
}

/* Service cards section */
.services {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: #f6f9fb;
}

/* Individual service card */
.service-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 260px;
  max-width: 300px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Contact form section */
.contact-form {
  padding: 40px 20px;
  background-color: #e7f3f9;
}

.contact-form h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-form form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  background-color: #c77653;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

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

header .container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header img {
  height: 80px;
  margin-right: 15px;
}

header h1 {
  font-size: 28px;
  margin: 0;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: #e7f3f9;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.5;
}

.cta-button {
  background-color: #c77653;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.cta-button:hover {
  background-color: #b26548;
}

/* Services section */
.services {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: #f6f9fb;
}

.service {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 260px;
  max-width: 300px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
}

.service p {
  margin-bottom: 0;
  line-height: 1.4;
}

/* Contact section */
.contact {
  padding: 40px 20px;
  background-color: #e7f3f9;
}

.contact h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.form-group textarea {
  resize: vertical;
}

button {
  align-self: flex-start;
  background-color: #c77653;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #b26548;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #c77653;
  color: #fff;
}