.contact-module {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            background-color: #fff;
            padding: 40px;
        }

        .form-section {
            padding: 30px;
        }
        .form-section h2{
          font-family: "Arial";
          font-size: 24px;
          line-height: 60px;
          color: #000000;
          font-weight: bold;
          margin-bottom: 0;
          margin-left: 40px;
          }
        .form-wrapper{
            padding: 5px 39px 20px 39px;
            background-color: #E8EAED;
            box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.25);

        }
.profile-bio-link{
  text-decoration: none;
}
        .form-wrapper label{
          color:#333333;
          font-size: 18px !important;
          font-weight: normal !important;
          }

        .form-wrapper input[type=submit] {
          width: 100%;
          padding: 18px 40px !important;
          background-color: #be1e2d !important;
          color: #ffffff !important;
          font-size: 18px !important;
          text-transform: uppercase !important;
          letter-spacing: 1px !important;
          border: none !important;
          cursor: pointer!important;
          transition: all 0.3s ease!important;
        }

        .form-wrapper input[type=submit] :hover {
          background-color: transparent !important;
          border: 1px solid red !important;
          color: black !important;
        }

        .form-wrapper input[type=submit] :active {
          background-color: red !important;
        }

        .form-wrapper input[type=submit] :focus {
          outline: none;
        }

        .form-wrapper input[type=submit] :disabled {
          background-color: #cccccc;
          cursor: not-allowed;
        }
          .form-wrapper input[type="text"],
          .form-wrapper input[type="email"],
          .form-wrapper textarea{
              max-width: none;
          }
        .profiles-section {
            display: flex;
            flex-direction: column;
            gap: 30px;
            padding:25px;
        }
@media (min-width: 768px) {
  .profiles-section {
            padding:25px;
            padding-top: 80px;
        }
}

        .profile-card {
            display: flex;
            align-items: flex-start;
            border-bottom: 1px solid #e0e0e0;
        }

        .profile-card:last-child {
            border-bottom: none;
        }

        .profile-image-wrapper {
            position: relative;
            flex-shrink: 0;
        }

        .profile-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
        }

        .linkedin-badge {
            top: 0;
            left: 0;
            background-color: #0077b5;
            color: #fff;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
            border: 3px solid #fff;
        }

        .profile-info {
            flex: 1;
           margin-bottom: 10px;
        }

        .profile-name-title {
            background-color: #fff;
            padding: 12px 15px;
            
        }

        .profile-name {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-bottom: 4px;
        }

        .profile-title {
            font-size: 18px;
            line-height:25px
            color: #666;
        }

        .profile-contact {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 8px;
            color: #333;
            font-size: 18px;
            margin-bottom: 8px;
            padding: 0px 15px;
        }

        .profile-contact svg {
            width: 20px;
            height: 20px;
            fill: #333;
        }
     

        .linkedin-link {
            display: inline-block;
            margin-top: 5px;
            padding: 0px 15px;
        }

        .linkedin-link svg {
            width: 17px;
            height: 17px;
            fill: #fff;
        }

        @media (max-width: 768px) {
            .contact-module {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0px;
            }
          .profile-contact{
            justify-content: center;
          }
        }

        @media (max-width: 768px) {
            .form-section {
                padding: 20px;
            }

            .profile-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }