.career-form {
  background-color: #ffffff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  padding: 2rem;
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group input[type="file"] {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  outline: none;
  background-color: #ffffff;
  color: #374151;
}

.form-group input:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 0;
}

.form-submit {
  text-align: center;
}

.submit-button {
  background-color: #2563eb;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: #1d4ed8;
}


/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.hero-video {
  width: 100%;
  margin-bottom: 2rem;
}

.hero-video video {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}

.hero-content {
  width: 100%;
  text-align: center;
}

.badge {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  border: 1px solid #9ca3af;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  display: inline-block;
}

.hero-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.25;
  color: #111827;
}

.hero-content p {
  color: #374151;
  font-size: 1.125rem;
  line-height: 1.75;
}

/* Cobsession Section */
.cobsession-section {
  background-color: #f9fafb;
  padding: 4rem 1.5rem;
}

.cobsession-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.cobsession-text {
  width: 100%;
  margin-bottom: 2.5rem;
}

.cobsession-text h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.cobsession-text .highlight {
  color: #2563eb;
}

.cobsession-text p {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.75;
}

.cobsession-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.cobsession-image img {
  width: 100%;
  max-width: 36rem;
}

/* Everyone Belongs Section */
.belongs-section {
  background-color: #f3f4f6;
  padding: 2.5rem;
}

.belongs-section h2 {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  text-align: center;
}

.belongs-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}

.belongs-grid:last-child {
  margin-bottom: 0;
}

.belongs-grid p {
  font-size: 1.125rem;
  color: #374151;
}

.belongs-grid img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  width: 100%;
}

/* Testimonials Section */
.testimonials-section {
  background-color: #ffffff;
  padding: 4rem 1.5rem;
}

.testimonials-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  color: #111827;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  gap: 2.5rem;
}

.testimonial-card {
  background-color: #f9fafb;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-header img {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 2px solid #3b82f6;
  margin-right: 1rem;
}

.testimonial-header.green img {
  border-color: #10b981;
}

.testimonial-header.purple img {
  border-color: #a855f7;
}

.testimonial-info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: #6b7280;
}

.testimonial-quote {
  color: #374151;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-style: italic;
}

.testimonial-card video {
  border-radius: 0.5rem;
  width: 100%;
}

/* Kickstart Career Section */
.career-section {
  background-color: #eff6ff;
  padding: 4rem 1.5rem;
}

.career-intro {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3rem;
}

.career-intro h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.career-intro p {
  font-size: 1.125rem;
  color: #1e40af;
}

.career-form {
  background-color: #ffffff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  padding: 2rem;
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group input[type="file"] {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  outline: none;
  background-color: #ffffff;
  color: #374151;
}

.form-group input:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 0;
}

.form-submit {
  text-align: center;
}

.submit-button {
  background-color: #2563eb;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: #1d4ed8;
}

/* FAQs Section */
.faq-section {
  background-color: #ffffff;
  padding: 4rem 1.5rem;
}

.faq-section h2 {
  font-size: 2.25rem;
  font-weight: 600;
  text-align: center;
  color: #111827;
  margin-bottom: 2.5rem;
}

.faq-container {
  max-width: 56rem;
  margin: 0 auto;
}

details {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1f2937;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary .arrow {
  color: #2563eb;
  transition: transform 0.3s;
}

details[open] summary .arrow {
  transform: rotate(180deg);
}

details p {
  margin-top: 0.75rem;
  color: #4b5563;
}

/* CTA Section */
.cta-section {
  background-color: #2563eb;
  padding: 3rem 1.5rem;
  color: #ffffff;
  text-align: center;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.cta-link {
  display: inline-block;
  background-color: #ffffff;
  color: #2563eb;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-link:hover {
  background-color: #dbeafe;
}

/* Current Openings */
#current-openings {
  padding: 2rem 1.5rem;
}

.kch-navbar,
.kch-header-section,
.kh-footer,
.kch-footer {
  display: none !important;
}

/* Footer */
footer {
  background-color: #111827;
  color: #e5e7eb;
  padding: 3rem 1.5rem;
}

.footer-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.footer-section svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  margin-top: 0.25rem;
  color: #60a5fa;
  flex-shrink: 0;
}

.footer-section a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  background-color: #2563eb;
  color: #ffffff;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.linkedin-link:hover {
  background-color: #1d4ed8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  font-size: 0.875rem;
}

.about-text {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: #9ca3af;
}

.footer-section img {
  height: 2rem;
}

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #9ca3af;
  position: relative;
}

.scroll-top {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  background-color: #1f2937;
  color: #ffffff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

.scroll-top:hover {
  background-color: #374151;
}

/* Responsive Design */
@media (min-width: 768px) {
  header {
    padding: 1rem 5rem;
  }

  nav {
    display: flex;
  }

  .hero-section {
    flex-direction: row;
    padding: 4rem 2rem;
  }

  .hero-video {
    width: 50%;
    margin-bottom: 0;
  }

  .hero-content {
    width: 50%;
    padding-left: 3rem;
    text-align: left;
  }

  .cobsession-section {
    padding: 4rem 5rem;
  }

  .cobsession-container {
    flex-direction: row;
  }

  .cobsession-text {
    width: 50%;
    margin-bottom: 0;
  }

  .cobsession-text h1 {
    font-size: 3rem;
  }

  .cobsession-text br {
    display: block;
  }

  .cobsession-image {
    width: 50%;
  }

  .belongs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-section {
    padding: 4rem 5rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .career-section {
    padding: 4rem 5rem;
  }

  .career-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-group.full-width {
    grid-column: span 2;
  }

  .form-submit {
    grid-column: span 2;
  }

  .faq-section {
    padding: 4rem 5rem;
  }

  .cta-section {
    padding: 3rem 5rem;
  }

  .cta-content h2 {
    font-size: 2.25rem;
  }

  footer {
    padding: 3rem 5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Utility Classes */
.hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
}
