/* styles.css */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 40px;
  background-color: #f7f7f7;
  color: #333;
}

.container {
  max-width: 700px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

h1, h2 {
  color: #007bff;
}

a {
  color: #007bff;
  text-decoration: none;
}

.language-switcher {
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #555;
}

.language-switcher a {
  color: #007bff;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.2s;
}

.language-switcher a:hover {
  color: #0056b3;
}

.language-switcher span {
  color: #888;
}

 body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(120deg, #007bff, #ff4081);
      color: white;
      text-align: center;
    }
    header {
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

img.logo {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  margin-bottom: 16px;
}

img.app-name {
  max-width: 200px;
  height: auto;
  margin-bottom: 16px;
}
    img.logo {
      width: 200px;
      height: 200px;
      /* border-radius: 20px; */
      /* box-shadow: 0 5px 15px rgba(0,0,0,0.2); */
    }
    h1 {
      font-size: 48px;
      margin: 20px 0 10px;
    }
    p.slogan {
      font-size: 20px;
      margin-bottom: 40px;
    }
    section.features {
      background: white;
      color: #333;
      padding: 40px 20px;
      border-radius: 30px 30px 0 0;
    }
    .features h2 {
      font-size: 28px;
      margin-bottom: 20px;
    }
    
    .features ul {
        list-style: none;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.3px;
}
    .features li {
      margin: 12px 0;
    }
    .buttons {
      margin-top: 30px;
    }
    .buttons a {
      display: inline-block;
      margin: 10px;
      padding: 12px 24px;
      background: #007bff;
      color: white;
      text-decoration: none;
      border-radius: 30px;
      font-weight: bold;
      transition: background 0.3s;
    }
    .buttons a.female {
      background: #ff4081;
    }
    footer {
      margin-top: 40px;
      font-size: 14px;
      color: #ddd;
    }