/* Global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

section, p, li {
  text-align: justify;
}

/* Container */
.container {
  width: 90%;
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.partner-list {
  padding-left: 20px;  /* space from left */
  margin-top: 8px;     /* space above the list */
}

.partner-list li {
  line-height: 1.6;    /* better readability */
}

/* Header */
.header {
  background: #00bfa6;
  color: #fff;
  padding: 30px 0;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.header p {
  font-size: 1rem;
}

/* Sections */
main section {
  margin: 30px 0;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

main h2 {
  color: #005f6b;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 15px;
  background: #00bfa6;
  color: #fff;
  font-size: 0.9rem;
  margin-top: 40px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* Responsive */
@media (max-width: 600px) {
  .header h1 {
    font-size: 1.5rem;
  }

  main h2 {
    font-size: 1.1rem;
  }
}
