html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f7fafd;
  color: #333;
}

body {
    flex: 1;
}

main {
    flex: 1;
}

header {
  background: #003388;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 28px;
}

header p {
  margin-top: 5px;
  font-size: 15px;
}

.menu-section {
  padding: 30px 20px;
  max-width: 1000px;
  margin: auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.menu-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.menu-card a {
  display: block;
  padding: 25px 15px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.menu-card a:hover p {
  color: #0055aa;
}


.menu-card img {
  width: 50px;
  height: 50px;
  margin-top: 15px;
}

.modern-footer {
    background-color: #003388;
    color: white;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
}

.footer-icon {
    width: 170px;
    height: 50px;
    margin-bottom: 10px;
}


.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.footer-column h3, .footer-column h4 {
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid white;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}

.store-badges img {
    height: 40px;
    margin-left: 10px;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
