/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f4faff;
  color: #333;
  line-height: 1.6;
}

header {
  background: #004d80;
  color: white;
  text-align: center;
  padding: 20px 0;
}

footer {
  background: #004d80;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}

.contact-section {
  max-width: 1100px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
}

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

.badge {
  background: #004d80;
  color: white;
  padding: 5px 15px;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 10px;
}

.contact-header h2 {
  font-size: 28px;
  color: #004d80;
}

.contact-header p {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-form {
  flex: 1 1 60%;
}

.contact-info {
  flex: 1 1 35%;
  background: #e6f2ff;
  padding: 20px;
  border-radius: 10px;
}

.contact-info h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #004d80;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.4;
}

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

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #007acc;
  outline: none;
  background-color: #f0faff;
}

.submit-btn {
  background-color: #004d80;
  color: white;
  padding: 12px 25px;
  border: none;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #007acc;
}

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

  .contact-form,
  .contact-info {
    width: 100%;
  }

  .contact-header h2 {
    font-size: 22px;
  }

  .submit-btn {
    width: 100%;
  }
}
