/* contact-style.css */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300&display=swap');

body.contact-page {
  font-family: 'Kanit', sans-serif; 
  background-color: #f0f2f5;
  color: #333;
  margin: 0;
  padding: 0;
}

header.contact-header {
  background-color: #3e09ee;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

header.contact-header h1 {
  margin: 0;
  font-size: 2rem;
}

header.contact-header p {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  opacity: 0.85;
}

main.contact-main {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}

section.contact-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

section.contact-card h2 {
  font-size: 1.75rem;
  color: #2f855a;
  text-align: center;
  margin-bottom: 1.5rem;
}

table.contact-table {
  width: 100%;
  border-collapse: collapse;
}

table.contact-table th, table.contact-table td {
  border: 1px solid #e2e8f0;
  padding: 0.75rem 1rem;
  text-align: left;
}

table.contact-table th {
  background-color: #e6fffa;
  color: #2f855a;
}

table.contact-table tbody tr:hover {
  background-color: #f0fff4;
}

footer.contact-footer {
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.875rem;
  color: #666;
  background-color: #f9fafb;
}
