body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background-color: #f4f4f4;
}

header {
  background: #333;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

/* Centered Logo Styles */
.centered-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  text-align: center;
}

.centered-logo svg {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.centered-logo div {
  font-size: 1.5em;
  font-weight: bold;
  color: #009952;
  letter-spacing: 1px;
}

nav {
  margin: 20px 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  margin: 0 10px;
  border-radius: 5px;
  transition: background 0.3s;
}

nav a:hover {
  background: #555;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

footer {
  text-align: center;
  padding: 20px 0;
  background: #333;
  color: #fff;
  position: relative;
  bottom: 0;
  width: 100%;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f8f8f8;
}
.top-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 0 40px;
  height: 70px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}
.top-menu .logo {
  display: flex;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  color: #2a7a20;
  gap: 10px;
  letter-spacing: 2px;
}
.top-menu .logo svg {
  width: 36px;
  height: 36px;
}
.top-menu .menu-links {
  display: flex;
  gap: 30px;
  font-size: 1.1em;
}
.slider-container {
  position: relative;
  width: 100%;
  height: 300px;
  background: #222;
  overflow: hidden;
  margin-bottom: 30px;
}
.slider-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2em;
  background-size: cover;
  background-position: center;
}
.slider-slide.active {
  opacity: 1;
  z-index: 1;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5em;
  cursor: pointer;
  z-index: 2;
}
.slider-arrow.left {
  left: 20px;
}
.slider-arrow.right {
  right: 20px;
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2px;
}
.tab {
  padding: 12px 28px;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
  color: #333;
  border: 1px solid #ddd;
  border-bottom: none;
  transition: background 0.2s;
}
.tab.active {
  background: #009952;
  color: #fff;
  border-color: #009952;
}
.tab-content {
  display: none;
  background: #fff;
  padding: 30px 0 40px 0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 40px;
}
.tab-content.active {
  display: block;
}
.tab-items {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.tab-item {
  width: 120px;
  text-align: center;
}
.tab-item a {
  display: block;
  text-decoration: none;
  color: #222;
}
.tab-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #eee;
  margin-bottom: 10px;
  transition: border 0.2s;
}
.tab-item img:hover {
  border: 2px solid #009952;
}
.footer {
  background: #009952;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1em;
  flex-wrap: wrap;
}
.footer .footer-left,
.footer .footer-right {
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 0 30px;
}
.footer .footer-left a {
  color: #fff;
  text-decoration: underline;
}
.footer a, a:active, a:visited {
  color: #fff;
  text-decoration: none;
}

/* News Section Styles */
.news-section {
  background-color: #ffeeee;
  padding: 15px;
  margin-bottom: 15px;
}

.news-section h3 {
  margin-top: 0;
  color: #333;
}

.news-date {
  color: #777;
  font-size: 0.9em;
  margin-bottom: 10px;
}

.read-more {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

.read-more:hover {
  text-decoration: underline;
}
