* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
  padding: 50px 20px;
  text-align: center;
  color: #333;
}

.main-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.main-content p {
  font-size: 1.2rem;
  opacity: 0.8;
}

.site-footer {
  background-color: #ffffff;
  color: #333;
  padding: 50px 0 30px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e0e0e0;
}

/* Geometric network background */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(200, 200, 200, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(200, 200, 200, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(200, 200, 200, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 60% 60%,
      rgba(200, 200, 200, 0.1) 1px,
      transparent 1px
    );
  background-size: 100px 100px, 150px 150px, 80px 80px, 120px 120px;
  opacity: 0.3;
  z-index: 1;
}

/* Network lines */
.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      45deg,
      transparent 48%,
      rgba(200, 200, 200, 0.1) 49%,
      rgba(200, 200, 200, 0.1) 51%,
      transparent 52%
    ),
    linear-gradient(
      -45deg,
      transparent 48%,
      rgba(200, 200, 200, 0.1) 49%,
      rgba(200, 200, 200, 0.1) 51%,
      transparent 52%
    ),
    linear-gradient(
      90deg,
      transparent 48%,
      rgba(200, 200, 200, 0.1) 49%,
      rgba(200, 200, 200, 0.1) 51%,
      transparent 52%
    );
  background-size: 150px 150px, 200px 200px, 100px 100px;
  opacity: 0.2;
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: #e74c3c;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-info {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: block;
  padding: 2px 0;
}

.footer-links a:hover {
  color: #e74c3c;
}

.contact2-info {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.contact2-info div {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.contact2-info div:before {
  content: "📍";
  margin-right: 8px;
  font-size: 12px;
}

.contact2-info div:nth-child(2):before {
  content: "📞";
}

.contact2-info div:nth-child(3):before {
  content: "✉️";
}

.contact2-info div:nth-child(4):before {
  content: "🏆";
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  text-align: center;
}

.copyright {
  font-size: 13px;
  color: #666;
  font-weight: 400;
}

/* Social media icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  width: 35px;
  height: 35px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #666;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-icon:hover {
  background-color: #e74c3c;
  color: white;
  transform: translateY(-2px);
}

/* Geometric dots overlay */
.geometric-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: rgba(231, 76, 60, 0.3);
  border-radius: 50%;
}

.dot:nth-child(1) {
  top: 20%;
  left: 15%;
}
.dot:nth-child(2) {
  top: 30%;
  left: 25%;
}
.dot:nth-child(3) {
  top: 40%;
  left: 35%;
}
.dot:nth-child(4) {
  top: 50%;
  left: 45%;
}
.dot:nth-child(5) {
  top: 60%;
  left: 55%;
}
.dot:nth-child(6) {
  top: 70%;
  left: 65%;
}
.dot:nth-child(7) {
  top: 80%;
  left: 75%;
}
.dot:nth-child(8) {
  top: 25%;
  right: 15%;
}
.dot:nth-child(9) {
  top: 35%;
  right: 25%;
}
.dot:nth-child(10) {
  top: 45%;
  right: 35%;
}
.dot:nth-child(11) {
  top: 55%;
  right: 45%;
}
.dot:nth-child(12) {
  top: 65%;
  right: 55%;
}

/* Connecting lines */
.connection-line {
  position: absolute;
  height: 1px;
  background-color: rgba(231, 76, 60, 0.2);
  pointer-events: none;
  z-index: 1;
}

.line-1 {
  top: 25%;
  left: 15%;
  width: 12%;
  transform: rotate(25deg);
}

.line-2 {
  top: 35%;
  left: 25%;
  width: 15%;
  transform: rotate(-15deg);
}

.line-3 {
  top: 45%;
  left: 35%;
  width: 10%;
  transform: rotate(45deg);
}

.line-4 {
  top: 55%;
  left: 45%;
  width: 13%;
  transform: rotate(-30deg);
}

.line-5 {
  top: 30%;
  right: 15%;
  width: 12%;
  transform: rotate(-25deg);
}

.line-6 {
  top: 40%;
  right: 25%;
  width: 15%;
  transform: rotate(15deg);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 30px 0 20px 0;
  }

  .footer-content {
    gap: 25px;
  }
}
