/* Contact Page Styles */

.contactWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1112px;
  margin: 1rem auto;
  padding: 0 1.5rem;
}

.contactInfo {
  padding: 1rem 1.5rem;
  margin-bottom: 0;
  text-align: left;
  width: 100%;
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.contactInfo p {
  font-size: 1rem;
  line-height: 1.7;
  text-align: left;
  margin-bottom: 0.5rem;
}

.meetingInfo {
  padding: 1rem 1.5rem;
  margin-bottom: 24px;
  text-align: left;
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.meetingInfo p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  text-align: left;
}

.meetingInfo .meetingNote {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
}

.meetingInfo .ctaArea {
  background: transparent;
  border-radius: 0;
  padding: 1rem 1.5rem;
  margin: 0.5rem 0 0.5rem 0;
  font-size: 1rem;
  line-height: 1.7;
  border: none;
  box-shadow: none;
  text-align: left;
}

.contactForm {
  background-color: #f7f7f7;
  padding: 40px;
  border-radius: 0;
  box-shadow: none;
  border: none;
  width: 100%;
}

.submitButtonWrapper {
  text-align: center;
  margin-top: 24px;
}

.submitButtonWrapper .btn {
  font-size: 1.4rem;
  padding: 22px 60px;
  background: #38b16e;
  border: 2px solid #38b16e;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  width: auto;
  min-width: 300px;
}

.submitButtonWrapper .btn:hover {
  background: #fff;
  color: #258a4d;
  border-color: #258a4d;
}

/* Form Styles */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.formGroup label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--jp-sans);
  font-weight: 700;
  color: var(--heading-color);
}

.formGroup label.required::after {
  content: " *";
  color: #dc2626;
  font-weight: 700;
}

.formGroup input,
.formGroup textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: var(--jp-sans);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  background-color: white;
}

.formGroup input::placeholder,
.formGroup textarea::placeholder {
  color: #9ca3af;
  font-size: 0.95rem;
}

.formGroup input:focus,
.formGroup textarea:focus {
  outline: none;
  border-color: var(--accent-color-1);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.formGroup textarea {
  resize: vertical;
  min-height: 120px;
}

/* Page Subtitle */
.pageSubtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contactWrapper {
    padding: 0 1rem;
  }
  
  .contactInfo p {
    font-size: 1rem;
  }
  
  .meetingInfo {
    padding: 16px;
  }
  
  .meetingInfo p {
    font-size: 0.95rem;
  }
  
  .contactForm {
    padding: 24px 16px;
  }
  
  .submitButtonWrapper .btn {
    font-size: 1.2rem;
    padding: 20px 55px;
  }
}

@media (max-width: 600px) {
  .contactWrapper {
    padding: 0 0.5rem;
    max-width: 100%;
  }
  
  .contactForm {
    padding: 20px 8px;
  }
  
  .submitButtonWrapper .btn {
    font-size: 1.1rem;
    padding: 14px 40px;
  }
  
  .formGroup input,
  .formGroup textarea {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  
  .formGroup label {
    font-size: 0.95rem;
  }
  
  .meetingInfo .ctaArea {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
} 