* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #222;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  color: black;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Responsive container */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

img {
  display: block;
}

.site-footer {
  background: #101820;
  color: #ccc;
  padding: 40px 0 20px;
  margin-top: auto;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-section p {
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 5px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
}

.footer-section a:hover {
  color: #de0000;
}

.social-links {
  display: flex;
  gap: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.social-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-decoration: none;
}

.social-icon img {
  width: 100%;
  height: 100%;
  filter: invert(1);
  transition: filter 0.3s ease;
}

.social-icon:hover img {
  filter: invert(0.5);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.newsletter-form input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  flex: 1;
}

.newsletter-form button {
  background: #de0000;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: #de0000;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-section {
    text-align: center;
  }
}