/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background-color: #e0e0e0; /* light gray */
  color: #222;
  text-align: center;
}

/* Container Layout */
.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  background: #fff;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

/* Header */
header {
  background-color: #cc0000; /* red */
  padding: 1.5rem 0;
  color: #fff;
  border-radius: 10px 10px 0 0;
  position: relative; /* Add this */
}

/* Emblem Image */
.emblem {
  width: 300px;
  max-width: 80%;
  margin: 3rem auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 12px #4442;
  background: #e0e0e0;
  padding: 8px;
}

/* Footer */
footer {
  background-color: #e0e0e062; /* lighter gray */
  color: #222;
  padding: 1rem 0;
  border-radius: 0 0 10px 10px;
  font-size: 1.1rem;
}

/* Services List */
.services-list {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 500px;
  background: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 2px 12px #00224422;
  border: 1.5px solid #cc0000;
}

.services-list li {
  margin: 1.2rem 0;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #002244;
  font-size: 1.08rem;
}

.services-list li:last-child {
  border-bottom: none;
}

.services-list .icon {
  color: #cc0000;
  font-size: 1.5rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.services-list b {
  color: #002244;
  font-size: 1.08rem;
}

.services-list .desc {
  color: #444;
  font-size: 0.98rem;
  display: block;
  margin-left: 2.1rem;
}

/* Social Links Styling */
.social-links {
  text-align: center;
  margin: 1.5rem 0 0.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center; /* vertically align icons */
  gap: 24px; /* more space between icons */
}

.social-links .social-icon {
  width: 45px;
  height: 45px;
  vertical-align: middle;
  transition: transform 0.2s, filter 0.2s;
  border-radius: 50%;
  box-shadow: 0 2px 8px #0002;
  background: #fff;
  object-fit: cover;
}

.social-links .facebook-icon {
  width: 45px;
  height: 45px;
}

.social-links a:hover .social-icon {
  filter: brightness(1.2) drop-shadow(0 2px 8px #cc000055);
  transform: scale(1.12);
}

#google_translate_element {
  position: absolute;
  top: 10px;
  right: 18px;
  margin: 0;
  text-align: right;
  transform: scale(0.6);
  transform-origin: top right;
  display: block;
  z-index: 2;
}
