* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
}

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

/* Header styles */
header {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #f15a39;
  border-radius: 5px;
}

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

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

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

/* Hero section */
.hero {
  background-image: url("./imgs/1.png");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

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

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

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

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

/* About section */
.about {
  padding: 60px 0;
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  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;
}

/* Team section */
.team {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.team-header {
  text-align: center;
  margin-bottom: 40px;
}

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

.team-content {
  display: flex;
  gap: 30px;
  align-items: center;
}

.team-image {
  flex: 1;
}

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

.team-text {
  flex: 1;
}

.team-text p {
  margin-bottom: 15px;
  font-size: 15px;
}

/* Services section */
.services {
  padding: 60px 0;
  background-color: #f15a39;
  color: white;
  text-align: center;
}

.services-header {
  margin-bottom: 40px;
}

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

.services-header p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
}

.services-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.service-card img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.service-card p {
  font-size: 14px;
}

/* Contact section */
.contact {
  padding: 60px 0;
  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: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
  background-color: #f5f5f5;
}

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

.submit-btn {
  background-color: #f15a39;
  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;
}

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

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

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

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

/* Responsive styles */
@media (max-width: 992px) {
  .about,
  .team-content {
    flex-direction: column;
  }

  .services-grid {
    flex-direction: column;
  }

  .service-card img {
    max-width: 150px;
  }

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

@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,
  .team-header h2,
  .services-header h2,
  .contact h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 300px;
  }

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

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