/* Reset some basic elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  background-color: #4CAF50;
  color: white;
  padding: 20px;
  text-align: center;
}

.header-container h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.header-container p {
  font-size: 1.2em;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: #e8f5e9;
}

.hero-content {
  max-width: 50%;
}

.hero-content h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.hero-content .cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
}

.hero-content .cta-button:hover {
  background-color: #45a049;
}

.hero-image {
  max-width: 40%;
  border-radius: 10px;
}

/* About Section */
.about {
  padding: 40px;
  text-align: center;
  background-color: white;
}

.about h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.about p {
  font-size: 1.2em;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  background-color: #f1f8e9;
  padding: 40px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.testimonial {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial p:last-child {
  font-weight: bold;
  margin-top: 10px;
}

/* Form Container */
.form-container {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  background: white;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
  position: relative;
  width: 100%;
}

footer a {
  color: #4CAF50;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}