/* Reset and basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  color: white;
  line-height: 1.6;
  background-color: #222;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header styles */
header {
  background-color: #222;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #222;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #5bf1a0;
  border-radius: 50px;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  padding: 10px 15px;
  background-color: #5bf1a0;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 14px;
}

/* Hero section */
.hero {
  background-color: #222;
  padding: 80px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-content {
  max-width: 500px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-image {
  width: 300px;
  height: 200px;
  background-color: #5bf1a0;
  border-radius: 100px;
}

.btn {
  display: inline-block;
  background-color: #5bf1a0;
  color: #222;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #4ad987;
  transform: translateY(-3px);
}

/* About section */
.about {
  padding: 60px 0;
  background-color: #5bf1a0;
  color: #222;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-content p {
  margin-bottom: 15px;
  font-size: 15px;
}

/* Services section */
.services {
  padding: 60px 0;
  background-color: #38aa6a;
  color: white;
}

.services-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.services-content {
  flex: 1;
}

.services-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: white;
}

.services-content p {
  margin-bottom: 15px;
  font-size: 15px;
}

.services-image {
  flex: 1;
}

.services-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Stats section */
.stats {
  padding: 40px 0;
  background-color: #1d5336;
  color: white;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.stat-item {
  flex: 1;
  padding: 20px;
}

.stat-number {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-text {
  font-size: 14px;
  text-transform: uppercase;
}

/* CEO section */
.ceo {
  padding: 60px 0;
  background-color: #222;
  color: white;
}

.ceo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.ceo-content {
  flex: 1;
}

.ceo-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ceo-content p {
  margin-bottom: 15px;
  font-size: 15px;
}

.ceo-quote {
  margin-top: 30px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ceo-image {
  flex: 1;
}

.ceo-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact section */
.contact {
  padding: 60px 0;
  background-color: #5bf1a0;
  color: #222;
  text-align: center;
}

.contact h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact p {
  margin-bottom: 30px;
  font-size: 15px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  background-color: rgba(255, 255, 255, 0.3);
  color: #222;
}

.form-control::placeholder {
  color: #222;
  opacity: 0.7;
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.submit-btn {
  background-color: #222;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #333;
  transform: translateY(-3px);
}

/* Footer */
footer {
  background-color: #5bf1a0;
  color: #222;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #222;
  margin: 0 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 30px;
  }

  .about-container,
  .services-container,
  .ceo-container {
    flex-direction: column;
  }

  .about-image,
  .services-image,
  .ceo-image {
    order: -1;
    margin-bottom: 30px;
  }

  .stats-container {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
  }

  nav ul {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 5px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .about-content h2,
  .services-content h2,
  .ceo-content h2,
  .contact h2 {
    font-size: 24px;
  }

  .stat-item {
    flex: 0 0 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 20px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
