.paragraph--type--get-in-touch {
  padding: 40px 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e3a8a 30%, #3b82f6 100%);
  color: #ffffff;
  border-radius: 40px;
  overflow: hidden;
  max-width: 1300px;
  width: 100%;
  margin: auto;
}

.get-in-touch-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 30px;
  align-items: center;
}

.git-content-left {
  flex: 1.2;
}

.git-form-right {
  flex: 1;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
  padding: 25px 29px;
  border-radius: 0px 84px 25px 0;
  color: #0f172a;
  position: relative;
  clip-path: polygon(0px 0px, 88.23% 1px, 99.05% 9.73%, 100% 100%, 0px 100%);
  display: flex;
  flex-direction: column;
}

.git-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  max-width: 450px;
}

.git-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 15px;
}

.git-info-item {
  margin-bottom: 0;
}

.git-info-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  display: block;
}

.git-info-value {
  font-size: 1.2rem;
  font-weight: 400;
}

.git-info-value a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.git-info-value a:hover {
  opacity: 0.8;
}

.git-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.git-social-icons a {
  color: #ffffff;
  font-size: 1.3rem;
  text-decoration: none;
}

/* If Social Links are just text, style them slightly differently or expect user to use icons */
.git-social-icons .field__item {
  display: inline-block;
}

.git-form-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0f172a;
}

.git-form-container {
  flex: 1;
}

/* Form Styling - Assuming Webform structure */
.git-form-container form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.git-form-container .js-form-item {
  margin-bottom: 15px;
}

.git-form-container input[type="text"],
.git-form-container input[type="email"],
.git-form-container textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e2e8f0;
  padding: 8px 0;
  font-size: 1rem;
  outline: none;
  color: #1e293b;
  font-family: inherit;
}

.git-form-container input::placeholder,
.git-form-container textarea::placeholder {
  color: #94a3b8;
}

.git-form-container input:focus,
.git-form-container textarea:focus {
  border-bottom-color: #3b82f6;
}

.git-form-container label {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 2px;
  font-weight: 500;
}

.git-form-container .form-actions {
  margin-top: auto;
  padding-top: 20px;
}

.git-form-container .form-submit {
  background: #0f172a;
  color: #ffffff;
  border: none;
  padding: 18px 45px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  width: fit-content;
  transition: all 0.3s ease;
}

.git-form-container .form-submit:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .get-in-touch-wrapper {
    gap: 40px;
    padding: 0 30px;
  }

  .git-title {
    font-size: 3rem;
  }
}

@media (max-width: 850px) {
  .get-in-touch-wrapper {
    flex-direction: column;
    padding: 0 20px;
    align-items: flex-start;
  }

  .git-content-left,
  .git-form-right {
    width: 100%;
  }

  .git-title {
    margin-bottom: 50px;
  }

  .git-form-right {
    min-height: auto;
  }
}