/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f7f6;
  }
  
  header {
    background: linear-gradient(135deg, #2c6e49, #7b9b62); /* Yeşil tonlu gradyan */
    color: white;
    padding: 15px 0;
    /* border-bottom: 2px solid #ff9800; Enerjik turuncu */
  }
  
  .navbar h1 {
    float: left;
    margin-left: 20px;
  }
  
  .navbar nav ul {
    list-style: none;
    float: right;
    margin-right: 20px;
  }
  
  .navbar nav ul li {
    display: inline;
    margin-left: 20px;
  }
  
  .navbar nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s;
    
  }
  
  .navbar nav ul li a:hover {
    color: #09ff53; /* Hoverda turuncu */
    background-color: transparent;
  }
  
  .hero {
    background: linear-gradient(135deg, #2c6e49, #66bb6a); /* Açık yeşil tonları */
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 0 0 20px 20px;
  }
  
  .hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .hero p {
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .hero .cta-button {
    background-color: #37c00d;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 22px;
    border-radius: 50px;
    transition: background-color 0.3s;
  }
  
  .hero .cta-button:hover {
    background-color: #30a80c; /* Turuncunun koyu tonu */
  }
  
  .about, .features, .contact {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 10px;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
  }
  
  .about h2, .features h2, .contact h2 {
    font-size: 36px;
    color: #2c6e49;
    margin-bottom: 20px;
  }
  
  .features ul {
    list-style-type: none;
    padding: 0;
  }
  
  .features ul li {
    font-size: 20px;
    margin: 15px 0;
    padding: 10px;
    background-color: #f1f8e9; /* Hafif yeşil arka plan */
    border-radius: 8px;
  }
  
  ul li:hover {
    background-color: #dcedc8; /* Hover efekti */
    cursor: pointer;
  }
  
  footer {
    background-color: #2c6e49;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 16px;
  }
  
  footer p {
    margin: 10px 0;
  }
  
  footer a {
    color: #ff9800;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  