/* .contact-wrapper {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-wrapper h1 {
  text-align: center;
  color: #005a9c;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #0074a8;
  padding-bottom: 0.5rem;
}

.contact-wrapper p {
  margin-bottom: 1.2rem;
  color: #333;
}

.contact-wrapper .back-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75em 1.5em;
  font-size: 1rem;
  background-color: #005a9c;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.contact-wrapper .back-button:hover {
  background-color: #003f70;
}

.contact-wrapper .partnership-section {
  background: #f8f9fa;
  border-left: 5px solid #005a9c;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.contact-wrapper .partnership-section h2 {
  font-size: 1.6rem;
  color: #005a9c;
}

.contact-wrapper .partnership-section p {
  color: #444;
} */

.contact-wrapper {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: 1.1rem;
  line-height: 1.7;
  font-family: "Georgia", "Times New Roman", serif;
  color: #2c3e50;
  border: 1px solid #e8eef5;
}

.contact-wrapper h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  font-family: "Arial", sans-serif;
}

.contact-wrapper h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #3182ce, #4299e1);
  border-radius: 2px;
}

.contact-wrapper p {
  margin-bottom: 1.5rem;
  color: #2d3748;
  position: relative;
  padding: 1rem;
  border-left: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  border-radius: 0 8px 8px 0;
}

.contact-wrapper p:hover {
  border-left-color: #4299e1;
  background: rgba(66, 153, 225, 0.02);
  padding-left: 1.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.contact-wrapper p:first-of-type {
  font-size: 1.15rem;
  color: #2b6cb0;
  font-weight: 500;
  background: linear-gradient(90deg, #edf2f7, transparent);
  border-left: 4px solid #4299e1;
  margin-bottom: 2rem;
}

.contact-wrapper a {
  color: #3182ce;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.contact-wrapper a:hover {
  color: #2c5282;
  border-bottom-color: #2c5282;
  background-color: rgba(49, 130, 206, 0.05);
  padding: 2px 4px;
  border-radius: 4px;
}

.contact-wrapper .back-button {
  display: inline-block;
  margin: 2rem 0 1.5rem 0;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #4299e1, #3182ce);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
  font-family: "Arial", sans-serif;
}

.contact-wrapper .back-button:hover {
  background: linear-gradient(135deg, #3182ce, #2c5282);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 153, 225, 0.4);
  border-bottom: none;
  padding: 0.75rem 1.5rem;
}

.contact-wrapper .partnership-section {
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  border: 2px solid #cbd5e0;
  border-left: 6px solid #4299e1;
  padding: 2rem;
  margin-top: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.1);
  position: relative;
}

.contact-wrapper .partnership-section::before {
  content: "🤝";
  position: absolute;
  top: -12px;
  left: 20px;
  background: #f7fafc;
  padding: 0 8px;
  font-size: 1.2rem;
}

.contact-wrapper .partnership-section h2 {
  font-size: 1.75rem;
  font-weight: 500;
  color: #2b6cb0;
  margin-bottom: 1.5rem;
  font-family: "Arial", sans-serif;
}

.contact-wrapper .partnership-section p {
  color: #2d3748;
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 1rem;
}

.contact-wrapper .partnership-section p:hover {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

/* Email styling enhancement */
.contact-wrapper #email {
  font-weight: 600;
  color: #3182ce;
  background: linear-gradient(90deg, rgba(66, 153, 225, 0.1), transparent);
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  border: 1px solid rgba(66, 153, 225, 0.2);
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
  .contact-wrapper {
    margin: 2rem 1rem;
    padding: 2rem 1.5rem;
  }

  .contact-wrapper h1 {
    font-size: 2.2rem;
  }

  .contact-wrapper p {
    padding: 0.8rem;
  }

  .contact-wrapper p:first-of-type {
    font-size: 1.1rem;
  }

  .contact-wrapper .partnership-section {
    padding: 1.5rem;
  }

  .contact-wrapper .partnership-section h2 {
    font-size: 1.4rem;
  }

  .contact-wrapper .back-button {
    display: block;
    text-align: center;
    margin: 2rem auto 1.5rem;
  }
}

/* Additional styling for the contact page content */
.contact-page {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: 1.1rem;
  line-height: 1.7;
  font-family: "Georgia", "Times New Roman", serif;
  color: #2c3e50;
  border: 1px solid #e8eef5;
}

.contact-page h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  font-family: "Arial", sans-serif;
}

.contact-page h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #3182ce, #4299e1);
  border-radius: 2px;
}

.contact-page p {
  margin-bottom: 1.5rem;
  color: #2d3748;
  position: relative;
  padding: 1rem;
  border-left: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  border-radius: 0 8px 8px 0;
}

.contact-page p:hover {
  border-left-color: #4299e1;
  background: rgba(66, 153, 225, 0.02);
  padding-left: 1.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.contact-page p:first-of-type {
  font-size: 1.15rem;
  color: #2b6cb0;
  font-weight: 500;
  background: linear-gradient(90deg, #edf2f7, transparent);
  border-left: 4px solid #4299e1;
  margin-bottom: 2rem;
}

.contact-page a {
  color: #3182ce;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.contact-page a:hover {
  color: #2c5282;
  border-bottom-color: #2c5282;
  background-color: rgba(49, 130, 206, 0.05);
  padding: 2px 4px;
  border-radius: 4px;
}

.contact-page .back-button {
  display: inline-block;
  margin: 2rem 0 1.5rem 0;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #4299e1, #3182ce);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
  font-family: "Arial", sans-serif;
}

.contact-page .back-button:hover {
  background: linear-gradient(135deg, #3182ce, #2c5282);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 153, 225, 0.4);
  border-bottom: none;
  padding: 0.75rem 1.5rem;
}

.contact-page .partnership-section {
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  border: 2px solid #cbd5e0;
  border-left: 6px solid #4299e1;
  padding: 2rem;
  margin-top: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(66, 153, 225, 0.1);
  position: relative;
}

.contact-page .partnership-section::before {
  content: "🤝";
  position: absolute;
  top: -12px;
  left: 20px;
  background: #f7fafc;
  padding: 0 8px;
  font-size: 1.2rem;
}

.contact-page .partnership-section h2 {
  font-size: 1.75rem;
  font-weight: 500;
  color: #2b6cb0;
  margin-bottom: 1.5rem;
  font-family: "Arial", sans-serif;
}

.contact-page .partnership-section p {
  color: #2d3748;
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 1rem;
}

.contact-page .partnership-section p:hover {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.contact-page #email {
  font-weight: 600;
  color: #3182ce;
  background: linear-gradient(90deg, rgba(66, 153, 225, 0.1), transparent);
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  border: 1px solid rgba(66, 153, 225, 0.2);
}
