/* public/style.css */
:root {
  --primary-color: #0d47a1; /* Deep Blue */
  --accent-color: #00bfa5;  /* Teal/Cyan matching logo */
  --text-color: #333;
  --bg-color: #f9f9f9;
}

* { box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
}

header {
  background: linear-gradient(90deg, #1565C0 0%, #009688 100%);
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.logo-container img {
  height: 40px;
  width: auto;
  background: white;
  border-radius: 50%;
  padding: 2px;
}

.main-content {
  background: white;
  padding: 40px;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Improve padding on small screens */
@media (max-width: 600px) {
  .main-content { padding: 20px; }
  .logo-container { font-size: 1.2rem; }
  .logo-container img { height: 34px; }
}

h1 {
  color: var(--primary-color);
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 10px;
}

h2 { color: #1e3c72; margin-top: 30px; }
h3 { color: #444; }
ul { margin-bottom: 20px; padding-left: 20px; }
li { margin-bottom: 8px; }

/* Style content links (not just footer) */
a { color: var(--primary-color); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #ddd;
  margin-top: auto;
}

.footer a { margin: 0 10px; }

/* Contact/info boxes */
.contact-box {
  background: #e3f2fd;
  padding: 15px;
  border-left: 5px solid var(--primary-color);
  margin: 20px 0;
  border-radius: 6px;
}

/* Accordion for FAQ */
details {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
  padding: 10px 15px;
}

summary {
  cursor: pointer;
  font-weight: bold;
  color: var(--primary-color);
  list-style: none;
}

/* nicer open state */
details[open] {
  border-color: rgba(0, 191, 165, 0.6);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* spacing for content inside details */
details > p,
details > ul {
  margin-top: 10px;
}

/* keyboard focus (accessibility) */
a:focus,
summary:focus {
  outline: 3px solid rgba(0, 191, 165, 0.5);
  outline-offset: 2px;
}
