/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;   /* Centers horizontally */
  align-items: center;       /* Centers vertically */
  padding: 20px;
  background-color: #004080; /* Deep blue */
  color: white;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 70px;
  height: auto;
}

.school-name {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.school-name span {
  font-size: 16px;
  font-weight: 900;
  color: #cce0ff;
}
.welcome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #cce7ff; /* light blue */
  padding: 30px 50px; /* reduce padding */
  min-height: 80vh; /* reduce height */
}

.welcome h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 900;
  color: #020915;
}

.welcome p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #003366;
  font-weight: 600;
}

.welcome .note-image {
  width: 280px;
  height: auto;
}

@media (max-width: 768px) {
  .welcome {
    flex-direction: column;
    align-items: flex-start; /* keep text left */
    min-height: auto; /* allow natural height on mobile */
  }

  .welcome .note-image {
    display: none; /* hide image on mobile */
  }
}
