
:root {
        --primary-color: #303e27;
        --secondary-color: #b4bb72;
        --accent-color: #e7eaa8;
        --text-color: #303e27;
        --text-light: #b4bb72;
        --bg-light: #f6faf7;
        --white: #ffffff;
        --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease;
      }




/* Footer */
    .footer {
      background-color: var(--primary-color);
      color: var(--white);
      padding: 4rem 0 2rem;
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }
    
    .footer-section {
      border-radius: 10px;
      padding: 20px;
    }
    
    .footer-section h3, .footer-section h4 {
      margin-bottom: 1rem;
      color: var(--accent-color);
    }
    
    .footer-section p {
      margin-bottom: 1rem;
      line-height: 1.6;
    }
    
    .footer-section ul {
      list-style: none;
    }
    
    .footer-section ul li {
      margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a {
      color: var(--white);
      text-decoration: none;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .footer-section ul li a:hover {
      color: var(--accent-color);
    }
    
    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }
    
    .social-links a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      background-color: var(--secondary-color);
      color: var(--white);
      border-radius: 50%;
      transition: var(--transition);
      text-decoration: none;
    }
    
    .social-links a:hover {
      background-color: var(--accent-color);
      color: var(--primary-color);
      text-decoration: none;
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    