/* Global Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
  padding: 0;
}

img {
  max-width: auto;
  height: auto;
}

/* Header & Navigation */
.green-bar {
  background-color: #afcb3a;
  padding: 10px 0;
  text-align: center;
}

.logo {
  max-height: 70px;
}

.black-bar {
  background-color: #000000;
  padding: 10px 0;
}

.black-bar ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.black-bar li a {
  color: white;
  font-weight: bold;
  font-size: 16px;
}

/* Hero Section */
.page-header {
  text-align: center;
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.page-header h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px #000000;
}

/* Section Containers */
main {
  padding: 20px;
}

section {
  margin: 20px auto;
  max-width: 1000px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: #afcb3a;
  color: black;
  font-weight: bold;
  padding: 12px 24px;
  margin-top: 20px;
  border-radius: 6px;
  transition: background-color 0.3s;
}

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

/* Pricing Cards */
.pricing-tables {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.price-card {
  background-color: #f3f3f3;
  padding: 20px;
  width: 250px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
}

.price-card h2 {
  margin-top: 0;
  color: #000;
}

.price-card ul {
  margin-top: 10px;
  text-align: left;
}

/* Contact Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.contact-form textarea {
  resize: vertical;
  height: 120px;
}

/* Centered Section */
.centered {
  text-align: center;
  margin-top: 30px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 0;
  background-color: #f8f8f8;
  color: #666;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .hero-img {
    max-height: 200px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
