/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: #333;
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Container styling */
.container {
  background: #fff;
  max-width: 800px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  padding: 30px;
  overflow-y: auto;
}

/* Logo styling */
.logo-container {
  text-align: center;
  margin-bottom: 20px;
}

.logo {
  max-width: 180px;
  height: auto;
}

/* Headings */
h1 {
  font-size: 32px;
  color: #6a11cb;
  margin-bottom: 10px;
}

h2 {
  font-size: 24px;
  color: #444;
  margin-top: 30px;
}

/* Paragraphs */
p {
  line-height: 1.7;
  margin-top: 15px;
}

/* Footer */
.footer {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #888;
}

/* Responsive design */
@media (max-width: 600px) {
  .container {
    padding: 20px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 20px;
  }

  .logo {
    max-width: 140px;
  }
}
