* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  line-height: 1.6;
}


footer {
  background-color: #2c2c2c;
  color: #fff;
  padding: 3rem 1rem 1rem;
  font-family: sans-serif;
}

.footer_container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer_text {
  max-width: 100%;
}

.footer_logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer_logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer_text h1 {
  font-weight: 700;
  font-size: 1.8rem;
  font-family: serif;
}

.footer_text p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer_media_logo {
  display: flex;
  gap: 0.75rem;
}

.footer_media_logo_images {
  width: 35px;
  height: 35px;
  background-color: #b3002d;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer_media_logo_images:hover {
  background-color: #d4003a;
}

.footer_media_logo_images img {
  width: 13px;
  height: 13px;
}

.footer_pages_name,
.footer_utility_pages,
.footer_image_section {
  margin-top: 1rem;
}

.footer_pages_name h3,
.footer_utility_pages h3,
.footer_image_section h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer_pages_list,
.utility_pages_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_link {
  margin-bottom: 0.75rem;
  width: 100px;
  font-size: 0.9rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0.25rem 0;
}

.footer_link:hover {
  color: #ffffff;
}

.footer_images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer_images img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.footer_images img:hover {
  transform: scale(0.95);
}

.footer_bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: #aaa;
  border-top: 1px solid #444;
  padding-top: 1rem;
}