/* ================================
   GLOBAL STYLES
================================ */
.partnerships-container {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #0d1b2a;
  line-height: 1.6;
  background: #f7fbff;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/* ================================
   HERO SECTION
================================ */
.hero {
  position: relative;
  width: 100vw;
  height: 70vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #dff1ff, #e8f6ff, #ffffff);
  background-size: 200% 200%;
  animation: heroGradient 8s ease infinite;
  z-index: 1;
}

@keyframes heroGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #0b2a3f;
}

.hero-content p {
  font-size: 1.2rem;
  color: #486581;
  margin-bottom: 2rem;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  background: #1a74e2;
  color: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.cta-btn:hover {
  background: #0d57b5;
  transform: translateY(-2px);
}

/* ================================
   SECTIONS
================================ */
section {
  padding: 4rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

section + section {
  margin-top: 0; /* no extra spacing between sections */
}

section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0b2a3f;
  position: relative;
}

section h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #1a74e2;
  border-radius: 3px;
  display: block;
  margin-top: 0.5rem;
}

section p {
  color: #4a5c6a;
  max-width: 750px;
}

/* ================================
   LIST SECTIONS
================================ */
section ul {
  margin-top: 1.5rem;
  list-style: none;
  padding-left: 0;
}

section li {
  background: #ffffff;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  border: 1px solid #e6f2ff;
  transition: all 0.25s ease;
}

section li:hover {
  border-color: #b8dcff;
  transform: translateY(-3px);
}

/* ================================
   CONTACT FORM
================================ */
.partnership-contact {
  background: linear-gradient(180deg, #f9fcff, #e9f4ff);
  padding: 5rem 1.5rem;
}

.contact-wrapper {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.contact-wrapper h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-wrapper p {
  margin-bottom: 2rem;
  color: #4a5c6a;
}

/* FORM STYLES */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  border: 1px solid #cfe4f9;
  background: #ffffff;
  font-size: 1rem;
  transition: all 0.25s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1a74e2;
  box-shadow: 0 0 0 4px rgba(26,116,226,0.15);
}

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

.contact-form .cta-btn {
  margin-top: 1rem;
  cursor: pointer;
  border: none;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  section {
    padding: 3rem 1rem;
  }
}



/* Hero */
.hero-content h1 {
  font-size: 3.5rem;  /* bigger */
  font-weight: 800;    /* extra bold */
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #2c3e50;
}

/* Section headings */
section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
}

/* Section paragraphs */
section p {
  font-size: 1.15rem;
  line-height: 1.7;
}

/* List items */
section li {
  font-size: 1rem;
  line-height: 1.6;
}


section {
  padding: 2rem 1.5rem; /* minimal vertical spacing */
}


/* ================================
   RESPONSIVE MEDIA QUERY
================================ */
@media (max-width: 768px) {

  /* Hero Section */
  .hero {
    height: 50vh;
    min-height: 350px;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .cta-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Sections */
  section {
    padding: 1.5rem 1rem; /* minimal vertical spacing */
    margin-top: 0; /* remove extra gap between sections */
  }

  section h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }

  section h2::after {
    width: 35px;
    height: 2px;
    margin-top: 0.3rem;
  }

  section p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  section li {
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  /* Contact Form */
  .partnership-contact {
    padding: 3rem 1rem; /* less vertical space */
  }

  .contact-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .contact-wrapper p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }

  .contact-form {
    gap: 0.8rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .contact-form .cta-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }

}
