.info-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 10px;
  margin: 20px 0;
}

.icon-circle {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background-color: white;
  border: 3px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #333;
}

.content-wrapper h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-wrapper p {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.mainform {
  padding: 40px;
  color: #fff;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.social-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1200') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}

.megaphone-circle {
  width: 120px;
  height: 120px;
  background-color: #1a2b4a;
  border: 4px solid #3d5a80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

  .megaphone-circle i {
    font-size: 50px;
    color: white;
  }

.main-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
}

.subtitle {
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.social-icon-wrapper {
  text-align: center;
  transition: transform 0.3s ease;
}

  .social-icon-wrapper:hover {
    transform: translateY(-10px);
  }

.social-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid white;
  transition: all 0.3s ease;
}

  .social-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

.facebook-circle {
  background-color: #3b5998;
}

.linkedin-circle {
  background-color: #0077b5;
}

.social-circle i {
  font-size: 60px;
  color: white;
}

.social-label {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blue-footer {
  background-color: #1a2b4a;
  height: 100px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 32px;
  }

  .subtitle {
    font-size: 16px;
  }

  .social-circle {
    width: 100px;
    height: 100px;
  }

    .social-circle i {
      font-size: 40px;
    }
}