@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  --color-primary: #00B2EE;
  --header-color: #170C68;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #444;
  background: #fff;
}

.container {
    
  max-width: 900px;
  margin: auto;
  padding: 2rem 1rem;
  text-align: left;
}

/* Main heading centered */
.scholarship-intro h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--header-color);
  margin-bottom: 1rem;
  margin-top:80px;
}

/* Subheadings left-aligned */
.scholarship-section h3,
.scholarship-form h3 {
  text-align: left;
  font-size: 1.5rem;
  color: var(--header-color);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

/* Paragraphs and lists left-aligned */
p, li {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: left;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Award Table */
.award-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.award-table th, .award-table td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: center;
}

.award-table th {
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
}

/* Form Styles */
.scholarship-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.scholarship-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}

.scholarship-form input,
.scholarship-form select,
.scholarship-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

/* Submit Button */
.btn.primary {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn.primary:hover {
  background: var(--header-color);
  transform: translateY(-2px);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .scholarship-intro h2 {
    font-size: 1.5rem;
  }

  .scholarship-section h3,
  .scholarship-form h3 {
    font-size: 1.25rem;
  }

  p, li {
    font-size: 0.95rem;
  }

  .award-table th, .award-table td {
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .btn.primary {
    width: 100%;
    text-align: center;
  }
}
