body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

.follow-us {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

h2 {
  color: #2c3e50;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #3498db;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.social-icon:hover {
  background: #2980b9;
  transform: scale(1.1);
}

footer {
  text-align: center;
  padding: 20px;
  background: #2c3e50;
  color: #fff;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 600px) {
  .social-icons {
    gap: 15px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 400px) {
  .follow-us {
    margin: 10px;
    padding: 15px;
  }

  h2 {
    font-size: 1.5em;
  }
}
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2c3e50;
  padding: 10px 20px;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}
.main-header .logo {
  font-size: 20px;
  font-weight: bold;
}
.navbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.navbar a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}
.navbar a:hover {
  background-color: #1a252f;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #2c3e50;
    margin-top: 10px;
  }
  .navbar.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}
