body {
  font-family: 'Georgia', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: #333;
}

.downloadBtn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.download {
    background-color: #50d1a2;
    border: none;
    color: white;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 20px;
    margin: 1vw;
    border-radius: 6px;
  }
  
  .download:hover {
    background-color: #2aa377;
  }

.container {
  max-width: 900px;
  margin: 30px auto;
  background: #fff;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
  box-sizing: border-box;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #1a73e8;
}

header p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  word-break: break-word;
}

header a {
  color: #1a73e8;
  text-decoration: none;
}

section {
  margin-bottom: 40px;
}

section h2 {
  font-size: 1.6rem;
  color: #1a73e8;
  border-bottom: 2px solid #ddd;
  padding-bottom: 6px;
  margin-bottom: 16px;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

ul li {
  margin-bottom: 12px;
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container {
    padding: 20px;
    margin: 20px;
  }

  header h1 {
    font-size: 2rem;
  }

  section h2 {
    font-size: 1.4rem;
  }

  header p {
    font-size: 0.95rem;
  }

  ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.8rem;
  }

  section h2 {
    font-size: 1.2rem;
  }

  header p, ul li {
    font-size: 0.9rem;
  }
}
