.header h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.header p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text-light);
}

.content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.left-section {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.left-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.form-group {
  margin-bottom: 35px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 45px;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 1px solid var(--green-700);
  background-color: transparent;
  font-size: 16px;
  color: var(--green-700);
  transition: border-color 0.3s ease;
  outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus {
  border-bottom-color: var(--green-700);
}

/* Success Modal */
.success-modal {
  text-align: center;
  padding: 50px 40px;
}

#successModal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.success-title {
  color: var(--text-light);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.success-message {
  color: var(--text-light);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
   z-index: 50;
}

.modal {
  background: var(--background-white);
  border-radius: 12px;
  padding: 20px 28px;
  width: 90%;
  max-width: 600px;
  position: relative;
  border: 1px solid var(--grey-200);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background-color: var(--grey-200);
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }

  .left-section {
    min-height: 200px;
  }

  .right-section {
    padding: 0;
  }

  .header h1 {
    font-size: 2rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}
