  .contact-component {
      background-color: #f5f5f5;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .contact-social-type-1 .contact-component__header {
      margin-bottom: 10px;
  }

  .contact-social-type-1 .contact-component__title {
      font-size: 1.6rem;
      font-weight: bold;
      color: #333;
  }

  .contact-social-type-1 .contact-social {
      display: flex;
      padding: 10px;
      border-radius: 8px;

      align-items: center;
  }

  .contact-social-type-1 .contact-social:hover {
      text-decoration: none;
      background: rgb(216, 216, 216);
  }

  .contact-social-type-1 .contact-social__icon img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 10px;
  }

    .contact-social-type-1 .contact-social__icon svg {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 10px;
  }

  .contact-social-type-1 .contact-social__content {
      font-size: 20px;
      color: #555;
      font-weight: bolder;
  }

  .contact-social-type-1 .contact-text {
      font-size: 16px;
      color: #666;
      text-align: justify;
      line-height: 1.5;
      margin-top: 10px;
  }

  .contact-social-type-1 .contact-text p {

      margin-bottom: 10px;
  }

  .contact-social-type-1 .btn-call-now {
      width: 100%;
      text-align: center;
      display: inline-block;
      background-color: #1E40AF;
      color: #fff;
      font-weight: 600;
      padding: 12px 24px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 1.2rem;
      box-shadow: 0 4px 6px rgba(30, 64, 175, 0.4);
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
      user-select: none;
  }

  .contact-social-type-1 .btn-call-now:hover,
  .contact-social-type-1 .btn-call-now:focus {
      background-color: #2563EB;
      box-shadow: 0 6px 12px rgba(30, 64, 175, 0.6);
      outline: none;
  }

  .contact-social-type-1 .btn-call-now:active {
      background-color: #EF4444;
      box-shadow: 0 3px 6px rgba(239, 68, 68, 0.7);
  }