body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #062e49;
}

header {
  background-color: #ffffff;
  padding: 2rem 1rem;
  text-align: center;
  border-bottom: 4px solid #f3f4f6;
}

.logo {
  max-width: 360px;
  margin: 0 auto 1rem;
}

h1 {
  font-size: 2rem;
  font-weight: 800;
}

.cta-button {
  background-color: #f6c268;
  color: #062e49;
  padding: 0.75rem 1.5rem;
  border: none;
  font-weight: 600;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #e0a800;
}

section {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.box {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

footer {
  background-color: #062e49;
  color: #ffffff;
  text-align: center;
  padding: 1.5rem;
}

footer a {
  color: #ffffff;
}

.footer-contact {
  margin-top: 0.5rem;
}

.subject-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin: 0.5rem 0;
}

.step-number {
  background-color: #f6c268;
  color: #062e49;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 0.5rem;
}

ul.tick-list {
  list-style: none;
  padding-left: 0;
}

ul.tick-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 1rem;
}

ul.tick-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 20px;
  height: 20px;
  background-image: url('assets/tick.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.subject-icon {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 0.5rem;
}

/* Specific subject icons */
.subject-english    { background-image: url('assets/english.svg'); }
.subject-mathematics { background-image: url('assets/mathematics.svg'); }
.subject-science    { background-image: url('assets/science.svg'); }
.subject-chemistry  { background-image: url('assets/chemistry.svg'); }
.subject-biology    { background-image: url('assets/biology.svg'); }
.subject-study      { background-image: url('assets/study.svg'); }

.contact-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.icon-email {
  width: 32px;
  height: 32px;
  background-image: url('assets/email.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}
