<<<<<<< HEAD
.contact-section {
  padding: 20px 20px;
  background: #0f172a; /* slate-900 */
}

.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-size: 40px;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}

.contact-header p {
  color: #94a3b8;
  font-size: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.form-group h2 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 10px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 6px;
  color: white;
  font-size: 14px;
  transition: 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #6366f1;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.checkbox-group label {
  font-size: 14px;
  color: #cbd5e1;
  display: flex;
  gap: 8px;
  align-items: center;
}

.checkbox-group input {
  accent-color: #6366f1;
}

.submit-btn {
  background: #6366f1;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  background: #4f46e5;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .contact-header h1 {
    font-size: 32px;
  }
=======
.contact-section {
  padding: 20px 20px;
  background: #0f172a; /* slate-900 */
}

.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-size: 40px;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}

.contact-header p {
  color: #94a3b8;
  font-size: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.form-group h2 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 10px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 6px;
  color: white;
  font-size: 14px;
  transition: 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #6366f1;
}

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

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.checkbox-group label {
  font-size: 14px;
  color: #cbd5e1;
  display: flex;
  gap: 8px;
  align-items: center;
}

.checkbox-group input {
  accent-color: #6366f1;
}

.submit-btn {
  background: #6366f1;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  background: #4f46e5;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .contact-header h1 {
    font-size: 32px;
  }
>>>>>>> d8500cc (Initial commit)
}