/* Contact Page Styles */
.contact-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.contact-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.contact-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #000000;
}

.tagline {
  font-size: 1.2rem;
  color: #555555;
  font-weight: 500;
  margin: 0;
}

.contact-sections {
  display: flex;
  flex-direction: column;
}

.section {
  background: transparent;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #e0e0e0;
}

.section:last-child {
  border-bottom: none;
}

.section h2 {
  color: #000000;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  border-bottom: none;
  padding-bottom: 0;
}

.section p {
  line-height: 1.6;
  color: #555555;
  margin-bottom: 0.5rem;
}

.section p:last-child {
  margin-bottom: 0;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #000000;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  color: #333333;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
}

/* CAPTCHA */
.captcha-container {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: center;
}

.captcha-container svg {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #ffffff;
  flex: 1;
  height: auto;
  max-width: 200px;
}

.captcha-refresh {
  padding: 0.5rem 0.75rem;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.2s;
}

.captcha-refresh:hover {
  background: #e8e8e8;
}

.captcha-refresh:active {
  background: #d8d8d8;
}

.submit-btn {
  padding: 0.75rem 2rem;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: #333333;
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.info-item h4 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  color: #000000;
  font-weight: bold;
}

.info-item p {
  margin: 0;
  color: #555555;
}

.info-item a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}

.info-item a:hover {
  text-decoration: underline;
}

/* Alerts */
.alert {
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  font-weight: 500;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 2rem;
  }

  .section h2 {
    font-size: 1.3rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}