/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #a6dfaf;
  color: #333;
  padding: 0;
}

/* Navbar */
.navbar {
  background-color: #2e7d32;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links a {
  color: #fff;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* About Section */
.about-container {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-container h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2e7d32;
}

.about-container p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Image Section */
.about-image {
  margin-top: 2rem;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Core Values */
.core-values {
  background-color: #f0f4f0;
  padding: 2rem;
  text-align: center;
}

.core-values h2 {
  margin-bottom: 1rem;
  color: #2e7d32;
}

.core-values ul {
  list-style: none;
  padding: 0;
}

.core-values li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: #2e7d32;
  color: rgb(2, 2, 2);
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

footer {
            background: linear-gradient(135deg, var(--primary-dark), #143d18);
            color: rgb(12, 12, 12);
            padding: 70px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(0, 0, 0, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .footer-contact p {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
        }

        .footer-contact i {
            color: var(--secondary);
            margin-top: 5px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            color: rgb(202, 21, 21);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(0, 0, 0, 0.6);
            font-size: 0.95rem;
        }
 

/* Responsive */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    margin-top: 0.5rem;
  }

  .nav-links a {
    display: block;
    margin: 0.3rem 0;
  }
}
