body {
  font-family: Arial, sans-serif;
  padding-top: 120px;
  background: #fff;
  color: #000;
}

.contact-main {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 0;
}

.contact-left {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.founder-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 0%;
  margin-bottom: 20px;
}

.linkedin-icon img {
  width: 24px;
  height: 24px;
  margin-top: 10px;
}

.contact-info {
  font-size: 16px;
  margin-top: 30px;
}

.contact-info a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
  color: black;
}

.contact-right {
  flex: 2;
  min-width: 300px;
}

.contact-right h2 {
  font-size: 24px;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

input, select, textarea {
  font-size: 16px;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #000;
  width: 100%;
  background: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-bottom: 2px solid #000;
}

button {
  display: inline-block;
  padding: 10px 16px;
  border: 2px solid #000;
  background: #fff;
  font-size: 16px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s;
}

button:hover {
  background: #000;
  color: #fff;
}
