       /* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-dark: #2d9249;
    --dark: #202124;
    --gray: #5f6368;
    --light-gray: #f8f9fa;
    --border: #dadce0;
    --warning: #f9ab00;  
      --primary: #34a853;

    --error: #ea4335;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body {
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}






/* Header Styles */
      header {
        background-color: var(--white);
        box-shadow: var(--shadow);
        position: sticky;
        top: 0;
        z-index: 100;
      }

      .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
      }

      .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--dark);
        text-decoration: none;
        font-family: cursive;
      }

      .logo span {
        color: rgb(31, 129, 31);
        text-decoration: line-through white;
      }

      /* Desktop Navigation */
      .desktop-nav ul {
        display: flex;
        list-style: none;
      }

      .desktop-nav li {
        margin-left: 25px;
      }

      .desktop-nav a {
        text-decoration: none;
        color: var(--gray);
        font-weight: 500;
        transition: color 0.3s;
        padding: 5px 10px;
        border-radius: 4px;
      }

      .desktop-nav a:hover, .desktop-nav a.active {
        color: var(--primary);
        background-color: var(--light-gray);
      }

      /* Mobile Navigation */
      .mobile-nav-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--dark);
      }

      .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow);
        padding: 20px;
        z-index: 99;
      }

      .mobile-nav.active {
        display: block;
      }

      .mobile-nav ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      .mobile-nav a {
        text-decoration: none;
        color: var(--gray);
        font-weight: 500;
        display: block;
        padding: 10px;
        border-radius: 4px;
        transition: all 0.3s;
      }

      .mobile-nav a:hover, .mobile-nav a.active {
        color: var(--primary);
        background-color: var(--light-gray);
      }




  
        /* About Section */
        .main-content {
            padding: 3rem 0;
            flex: 1;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 2.5rem;
            font-size: 2.5rem;
            color: var(--primary);
        }

        .about-section {
            margin-bottom: 40px;
            padding: 30px;
            background: white;
            border-radius: 8px;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .about-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about-section h2 {
            margin-bottom: 20px;
            color: var(--dark);
            font-size: 1.8rem;
        }

        .about-section p {
            margin-bottom: 15px;
        }

        .about-section ul {
            margin-left: 20px;
            margin-top: 10px;
        }

        .about-section li {
            margin-bottom: 8px;
        }

        /* Team Grid */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 30px;
        }

        .team-member {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .team-member.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .team-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 15px;
            transition: transform 0.3s ease;
        }

        .team-member:hover .team-avatar {
            transform: scale(1.1);
        }



        /* Footer */
      footer {
        background-color: var(--dark);
        color: white;
        padding: 60px 0 20px;
        margin-top: auto;
        position: relative;
        top: 50px;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 40px;
      }

      .footer-column h3 {
        margin-bottom: 20px;
        font-size: 1.2rem;
      }

      .footer-column ul {
        list-style: none;
      }

      .footer-column li {
        margin-bottom: 10px;
      }

      .footer-column a {
        color: #bdc1c6;
        text-decoration: none;
        transition: color 0.3s;
      }

      .footer-column a:hover {
        color: white;
      }

      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #3c4043;
        color: #9aa0a6;
        font-size: 0.9rem;
      }

       

        /* Responsive Styles */
 @media (max-width: 1024px) {
          
        .footer-content {
          grid-template-columns: repeat(2, 1fr);
        }
      }



         
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
            
          
            
            .about-section {
                padding: 20px;
            }


  .desktop-nav {
          display: none;
        }
        
        .mobile-nav-toggle {
          display: block;
        }
        
        .features-grid {
          grid-template-columns: 1fr;
        }
        
        .footer-content {
          grid-template-columns: 1fr;
        }
        
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .about-section h2 {
                font-size: 1.5rem;
            }
            
            .container {
                padding: 0 15px;
            }
        }