.contact-section {
  padding: 60px 20px;
  background-color: #fffdfa;
  font-family: 'Georgia', serif;
  color: #031633;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #031633;
}

.contact-info p,
.contact-intro {
  font-size: 1rem;
  color: #4b4b4b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-method img {
  width: 28px;
  height: 28px;
}

.contact-method a {
  font-weight: 600;
  color: #f2b805;
  text-decoration: none;
}

.contact-illustration {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  margin-top: 24px;
  object-fit: cover;
}

.contact-form {
  flex: 1.2;
  min-width: 300px;
  background-color: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);00
..0}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #031633;
}

.form-group input,
.form-group textarea {
  border: 2px solid #f2b805;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  background-color: #fff;
  width: 100%;
  height: 44px;
  box-sizing: border-box;
  color: #031633;
}

.form-group textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #f2b805;
  box-shadow: 0 0 0 3px rgba(242, 184, 5, 0.3);
  outline: none;
}

.btn-gradient {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  background-color: #f2b805;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-gradient:hover {
  background-color: #ffcb2b;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }
}




.info-section {
  background-color: #fffdfa;
  padding: 40px 20px;
  font-family: 'Georgia', serif;
  color: #031633;
}

.info-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.info-column {
  flex: 1;
  min-width: 280px;
}

.info-column h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #031633;
}

.info-column hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin-bottom: 12px;
}

.info-column p {
  margin: 8px 0;
  font-size: 0.95rem;
  color: #4b4b4b;
  line-height: 1.6;
}

.info-column a {
  text-decoration: none;
  color: #f2b805;
  font-weight: 600;
}

.info-column .highlight-link {
  color: #f97316;
  font-weight: 600;
}
