/* General Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #444;
}

h1,
h2,
h3 {
  line-height: 1.4;
  font-weight: 300;
}

a {
  text-decoration: none;
  color: #006400;
}

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

img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Header */
header {
  background: #fff;
  color: #333;
  padding: 1.5rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

header h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

header nav ul {
  margin-top: 1rem;
  padding: 0;
  display: flex;
  justify-content: center;
}

header nav ul li a {
  margin: 0 20px;
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #006400;
}

/* Main Content */
main {
  padding: 40px 20px;
}

section {
  margin-bottom: 60px;
  padding: 40px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Hero Section */
#hero {
  text-align: center;
  background: linear-gradient(
    to right,
    rgba(34, 157, 34, 0.7),
    rgba(1, 129, 58, 0.7)
  );
  color: #fff;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

#hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

#hero h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  font-weight: 700;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: #fff;
  color: #006400;
  border-radius: 5px;
  margin-top: 20px;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
}

.cta-button:hover {
  background-color: #006400;
  color: #fff;
}

/* About Section */
#about .content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1;
}

#about p {
  flex: 2;
}



/* Services Section */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-item {
  text-align: left;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-item img {
  margin-bottom: 1rem;
}

/* News Section */
#news article {
  margin-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 30px;
}

#news article:last-child {
  border-bottom: none;
}

#news h3 {
  color: #006400;
}

/* Contact Section */
#contact {
  text-align: center;
}

#contact address {
  font-style: normal;
  font-size: 1.1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background: #333;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
  }

  header nav ul li a {
    margin: 10px 0;
    display: block;
  }

  #hero h2 {
    font-size: 2.5rem;
  }

  #about .content {
    flex-direction: column;
  }

  
}

.nickname {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}