/* Global Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f9f9f9;
}

a {
  color: #1e40af;
  text-decoration: none;
}

a:hover {
  color: #0b6623;
}

/* Header Styles */
.site-header {
  background-color: #1e3a8a;
  color: #fff;
  padding: 1rem 2rem;
  text-align: center;
}

.site-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-header .logo {
  max-width: 100px;
  height: auto;
  margin-bottom: 0.5rem;
}

/* Page Content */
.page-content {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.page-content h2 {
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.page-content h3 {
  margin-top: 1.5rem;
  color: #0b6623;
}

.page-content p {
  line-height: 1.6;
  margin: 0.5rem 0;
}

/* Footer */
footer {
  background-color: #f8f8f8;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 3rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem 4rem;
  gap: 1.5rem;
}

.footer-logo {
  max-width: 250px;
  flex: 1 1 220px;
}

.footer-logo img {
  max-width: 130px;
  height: auto;
  margin-bottom: 0.5rem;
}

.footer-contact,
.footer-price,
.footer-legal {
  flex: 1 1 200px;
}

.footer-contact h4,
.footer-price h4,
.footer-legal h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #1e3a8a;
}

.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal ul li {
  margin-bottom: 0.4rem;
}

.footer-legal ul li a,
.footer-contact a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal ul li a:hover,
.footer-contact a:hover {
  color: #0b6623;
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  background-color: #eaeaea;
  font-size: 0.9rem;
}

/* ✅ Responsive styles for mobile & tablets */
@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .footer-logo,
  .footer-contact,
  .footer-price,
  .footer-legal {
    flex: 1 1 100%;
    margin-top: 0.5rem;
    max-width: 100%;
  }

  .footer-logo img {
    margin: 0 auto 0.5rem;
  }

  .footer-logo p,
  .footer-contact p,
  .footer-price p {
    margin: 0.3rem 0;
  }


  .site-header .container {
    flex-direction: column;
    text-align: center;
  }
}
