/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  color: #2c3e50;
}

p {
   margin-top: 0px;
   margin-bottom: 0px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  background-color: #3498db;
  color: #fff;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2em;
}

header p {
  margin-top: 5px;
  font-size: 1.2em;
}

/* Image */
.header-image {
  width: 300px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Services Section */
.services {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service {
  flex: 1;
  background-color: #ecf0f1;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service h3 {
  margin-top: 0;
}

/* CTA Button */
.cta {
  text-align: center;
  margin-top: 20px;
}

.cta a {
  display: inline-block;
  padding: 12px 24px;
  background-color: #3498db;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cta a:hover {
  background-color: #2980b9;
}

/* Trust Signals */
.trust-signals {
  margin-top: 20px;
  font-size: 1.1em;
  color: #2c3e50;
}

/* Contact Form */
.contact-form {
  margin-top: 30px;
  background-color: #ffffff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-form h3 {
  margin-top: 0;
}

.contact-form input, .contact-form textarea, .contact-form button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.contact-form textarea {
  height: 100px;
}

.contact-form button {
  background-color: #3498db;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

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

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #ecf0f1;
  color: #7f8c8d;
  font-size: 0.9em;
  margin-top: 30px;
}
