/* General Styles */
:root {
  --primary-color: #556b2f;
  --secondary-color: #556b2f;
  --background-color: #f5f5f5;
  --text-color: #333333;
  --white: #ffffff;
  --black: #000000;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header and Navigation */
header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  grid-column: 1;
  justify-self: start;
}

header nav {
  grid-column: 1;
  justify-self: start;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

header .logo {
  grid-column: 2;
  justify-self: center;
}

header .partner-logo {
  grid-column: 3;
  justify-self: end;
}

header .logo img,
header .partner-logo img {
  height: 80px;
  max-width: 100%;
  object-fit: contain;
}

header nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

header nav ul li a:hover {
  color: #6b8e23;
}

header nav ul li a.btn {
  background-color: var(--secondary-color);
  padding: 8px 15px;
  border-radius: 5px;
}

header nav ul li a.btn:hover {
  background-color: #6b8e23;
}

/* Hero Section */
#hero {
  background: url('sunset-3378088.jpg') no-repeat center center/cover;
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

#hero h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#hero .welcome-message {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#hero .btn {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

#hero .btn:hover {
  background-color: #6b8e23;
}

/* About Us Section */
#about {
  padding: 50px 0;
  text-align: center;
  background-color: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

#about p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 20px;
}

#about h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

#about .services-list ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

#about .services-list ul li {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

#about .services-list ul li i {
  color: var(--primary-color);
  margin-right: 10px;
}

#about .highlight {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 20px;
}

/* Services Section */
#services {
  background: url('port-4602965.jpg') no-repeat center center/cover;
  padding: 50px 0;
  text-align: center;
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
}

#services .container {
  position: relative;
  z-index: 1;
}

#services h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.service {
  background-color: var(--white);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
}

.service i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.service p {
  font-size: 0.9rem;
  color: var(--text-color);
}

/* Contact Section */
#contact {
  padding: 50px 0;
  text-align: center;
  background-color: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#contact h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

#contact p {
  font-size: 1rem;
  margin-bottom: 30px;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

#contact-form input,
#contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.9rem;
}

#contact-form textarea {
  min-height: 120px;
}

#contact-form button {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

#contact-form button:hover {
  background-color: #6b8e23;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 30px 0;
}

footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

footer .footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

footer .footer-section p,
footer .footer-section ul {
  font-size: 0.9rem;
  color: var(--white);
}

footer .footer-section ul {
  list-style: none;
  padding: 0;
}

footer .footer-section ul li {
  margin-bottom: 8px;
}

footer .footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .footer-section ul li a:hover {
  color: #6b8e23;
}

footer .footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  header .logo img,
  header .partner-logo img {
    height: 70px;
  }
}

@media (max-width: 768px) {
  header .container {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .mobile-menu-toggle {
    display: block;
  }
  
  header nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 1000;
    transition: left 0.3s ease;
    padding-top: 70px;
  }
  
  header nav.active {
    left: 0;
  }
  
  header nav ul {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  header .logo {
    grid-column: 2;
  }

  header .partner-logo {
    grid-column: 3;
  }
  
  #hero h1 {
    font-size: 1.8rem;
  }
  
  #hero .welcome-message {
    font-size: 0.9rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  header .logo img,
  header .partner-logo img {
    height: 60px;
  }

  header .container {
    grid-template-columns: 40px 1fr 40px;
  }

  header .logo {
    grid-column: 2;
  }

  header .partner-logo {
    grid-column: 3;
  }
  
  #hero {
    padding: 60px 0;
  }
  
  #hero h1 {
    font-size: 1.6rem;
  }
  
  #about h2,
  #services h2,
  #contact h2 {
    font-size: 1.8rem;
  }
  
  footer .footer-content {
    grid-template-columns: 1fr;
  }
}