/* Global Styles */
body {
  font-family: 'Oswald', sans-serif;
  margin: 0;
  padding: 0;
  background-color: black;
  color: #C1FF72;
}

/* Hero Section with Background Image */
.hero {
  position: relative;
  background: url('../images/hero-image.jpg') no-repeat center center/cover;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Logo */
.logo {
  position: absolute;
  top: 20%;
  max-width: 450px;
}

/* Main Heading */
.heading {
  text-align: center;
  margin: 0;
  margin-bottom: 20px;
}

.heading h1 {
  font-size: 48px;
  margin-top: 0;
  margin-bottom: 10px;
  color: #C1FF72;
}

.heading h2 {
  font-size: 36px;
  margin: 0;
  color: #C1FF72;
}

/* Background Section */
.background {
  background-color: #000;
  width: 100%;
  padding: 40px 0;
}

/* Content Box */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: #C1FF72;
}

/* Call to Action Button */
.cta-button {
  display: inline-block;
  background-color: #C1FF72;
  color: #000;
  padding: 12px 24px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #a9e05a;
  transform: scale(1.05);
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
}

.social-icons img {
  width: 50px;
  height: 50px;
  margin: 0 10px;
  transition: transform 0.3s ease-in-out;
  filter: invert(20%) sepia(100%) saturate(5000%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Customer Feedback Section */
.feedback-container {
  margin-top: 20px;
}

.feedback-item {
  background-color: rgba(193, 255, 114, 0.05);
  padding: 20px;
  margin-bottom: 25px;
  text-align: center;
  border-radius: 8px;
}

.feedback-item .quote {
  font-style: italic;
  font-size: 1.2em;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

.feedback-item .source {
  font-size: 1em;
  text-align: center;
  margin: 0;
  opacity: 0.9;
}


/* Contact Form Background Section */
.contact-background {
  position: relative;
  background: url('../images/background-contact.jpg') no-repeat center center/cover;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.contact-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.contact-background .content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  z-index: 2;
}

/* Responsive iframe container */
.form-container {
  position: relative;
  width: 100%;
  height: 1000px;
}

.form-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile Adjustments for iframe */
@media (max-width: 600px) {
  .form-container {
    height: 1200px;
  }
}

/* Responsive Design for Smaller Screens */
@media (max-width: 600px) {
  .logo {
    max-width: 300px;
  }

  .heading h1 {
    font-size: 36px;
  }

  .heading h2 {
    font-size: 28px;
  }

  .social-icons img {
    width: 40px;
    height: 40px;
  }

  .feedback-item .quote {
    font-size: 1em;
  }
}
