/* General Layout */
body {
  font-family: Arial, sans-serif;
  background: #f9fafb;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 40px;
}
.header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.header p {
  font-size: 1.2rem;
  color: #666;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.card h2 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.highlight {
  font-weight: bold;
  color: #222;
}
.map-link {
  display: inline-block;
  margin-top: 10px;
  color: #2563eb;
  text-decoration: none;
}
.map-link:hover {
  text-decoration: underline;
}

/* Tabs */
.tabs {
  margin-bottom: 40px;
}
.tab-buttons {
  display: flex;
  border-bottom: 2px solid #ddd;
}
.tab-btn {
  flex: 1;
  padding: 10px;
  background: none;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}
.tab-btn.active {
  border-bottom: 3px solid #2563eb;
  color: #2563eb;
}
.tab-content {
  margin-top: 20px;
}
.hidden {
  display: none;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.contact-form button {
  background: #2563eb;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.contact-form button:hover {
  background: #1d4ed8;
}

/* Info Blocks */
.info-block {
  background: #f3f4f6;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 15px;
}
.info-block h3 {
  margin-bottom: 8px;
}

/* Social footer simplified */
.social {
  text-align: center;
  background: #f9fafb;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-top: 40px;
}
.social h2 {
  margin-bottom: 10px;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}
.social-links a {
  font-size: 1rem;
  color: #2563eb;
  text-decoration: none;
}
.social-links a:hover {
  text-decoration: underline;
}

/* Site footer */
.site-footer {
  margin-top: 20px;
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 16px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-link {
  color: #555;
  text-decoration: none;
}
.footer-link:hover {
  text-decoration: underline;
}
.footer-copy {
  color: #555;
  font-size: 0.9rem;
}
