 
 *{
  margin:0;
  padding:0;
 }
body{
    /* overflow: hidden; */
    font-family: "Montserrat", sans-serif;
}
.two-columns{
  /* height:500px; */
  display:flex;
  flex-direction: row;
  margin:25vh 22vw 0 23vw;
  gap:2vw;
}
.two-columns, .social-media{
  width:40vw;
  /* margin-left:25vw; */
}
 .contact-card{
  
  width:100%;
  display:flex;
  flex-direction: column;
  align-items:flex-end;
  position:relative;
  /* left:-100px; */
 }
/* .contact-card {
      background: var(--card-bg);
      padding: 2.5rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      width: 100%;
      max-width: 420px;
    } */

    .contact-title {
      text-align: left;
      margin-bottom: 1rem;
      font-weight: 500;
      font-size: 1rem;
      align-self: baseline;
    }

.row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  gap:10px;
}

.row label {
  text-align: left;
}

.row input {
  text-align: right;
  /* width: 150px;  */
  /* required so input can move to the right */
}

.row input .row textarea{
  width: 180px;
}

    form {
      width:100%;
      max-width: 370px;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-left: 1vw;
    }

    label {
      font-size: 0.9rem;
      font-weight: 400;
    }

    input, textarea {
      padding: 0.8rem;
      border: 1px solid #ccc;
      border-radius: var(--radius);
      font-family: "Montserrat", sans-serif;

      /* font-size: 1rem; */
      font-weight: 400;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    input:focus, textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 2px rgba(0, 119, 255, 0.1);
      outline: none;
    }

    textarea {
      resize: none;
      min-height: 120px;
    }

    button {
      background-color: var(--accent);
      color: white;
      border: none;
      border-radius: var(--radius);
      padding: 0.9rem;
    font-family: "Montserrat", sans-serif;
      /* font-size: 1rem; */
      font-weight: 500;
      cursor: pointer;
      transition: background 0.25s;
    }

    button:hover {
      background-color: rgb(84,94,82);
    }

    .contact-info {
      font-size: 0.9rem;
      width: 100%;
      /* color: #666; */
    }

    .contact-info a {
      color: var(--accent);
      text-decoration: none;
      margin-left: 1vw;
      padding: 5px 8px;
      background-color: rgba(255, 255, 255, 0.5);
      border-radius: 10px;
    }

    .contact-info a:hover {
      text-decoration: underline;
    } 
  :root {
      --bg: #f7f9fb;
      --card-bg: #fff;
      /* --accent: #0077ff; */
      --accent:rgb(83,75,102);
      --text: #333;
      --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      --radius: 12px;
    }


    .social-media{
       display:flex;
       /* min-height: 35px;
      height: 5vh; */
    
      margin:10vh 22vw 1vw 23vw;
      justify-content: space-around;
      position:relative;
      
    }
    
    /* .social-media >div>a>img{
      height:100%;
    } */

    .sm-icon img {
        width: clamp(24px, 2.5vw, 32px);
        height: clamp(24px, 2.5vw, 32px);
    }

    