/* Hide static fallback jobs initially - prevents blinking on page load */
.static-job {
  display: none;
}

/* Jobs loading spinner */
.jobs-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  min-height: 50vh;
  width: 100%;
  text-align: center;
  grid-column: 1 / -1;
  place-self: center;
}

.jobs-loader .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #1a1a1a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.jobs-loader p {
  color: #666666;
  font-size: 1rem;
  margin: 0;
}

/* No jobs message styling */
.no-jobs-message {
  text-align: center;
  padding: 60px 20px;
  color: #666666;
}

.no-jobs-message h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.no-jobs-message p {
  font-size: 1rem;
  margin-bottom: 0;
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #2e2e2e;
  line-height: 1.6;
  font-weight: 400;
}

/* Utility container */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Navigation */
.navbar {
  background: #1a1a1a;
  padding: 0;
  height: 72px;
  border-bottom: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: relative;
  height: 72px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.logo:hover {
  color: #e6b54a;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 50px;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 500;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 8px 0;
  position: relative;
  transition: all 0.2s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e6b54a;
  transition: width 0.2s ease;
}

.nav-links li a:hover {
  color: #e6b54a;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a.active {
  color: #e6b54a;
}

.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a.active,
.logo.active {
  color: #e6b54a;
}

/* Hero Section */
.hero {
  padding: calc(72px + 3rem) 0 120px;
  background-image: url("attached_assets/dental\ jobs\ dental\ recruiter_1755058682750.png");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text h1::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #e6b54a;
  border-radius: 2px;
}

.hero-text h1 .accent {
  color: #e6b54a;
}

.accent {
  color: #e6b54a;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #e6b54a;
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.2rem;
  color: #ffffff !important;
  margin-bottom: 24px;
  line-height: 1.7;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  min-width: 200px;
}

.btn-primary {
  background-color: #1c7c7c;
  color: #ffffff;
  border-color: #1c7c7c;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #155f5f;
  border-color: #155f5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(28, 124, 124, 0.4);
}

.btn-secondary {
  background-color: #ffffff;
  color: #1c7c7c;
  border-color: #1c7c7c;
}

.btn-secondary:hover {
  background-color: #1c7c7c;
  color: #ffffff;
  border-color: #1c7c7c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(28, 124, 124, 0.3);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-visual-element {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.hero-photo:hover {
  transform: scale(1.02);
}

/* Why Us Section */
.why-us {
  background: #f7f7f7;
  padding: 120px 20px;
  margin-top: 80px;
  border-top: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.why-us h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #1c7c7c;
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
  position: relative;
}

.why-us h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #e6b54a;
  border-radius: 2px;
}

.why-us-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  font-size: 1.2rem;
  color: #4a5568;
  line-height: 1.8;
  font-weight: 400;
}

/* Updated USP Cards Layout */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.usp-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.usp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #1c7c7c;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.usp-card:hover::before {
  transform: translateX(0);
}

.usp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e0;
}

.usp-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #e6b54a 0%, #d4a029 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 16px rgba(230, 181, 74, 0.25);
  transition: transform 0.3s ease;
}

.usp-card:hover .icon {
  transform: scale(1.1);
}

.usp-card h3 {
  margin-bottom: 16px;
  font-size: 1.25rem;
  color: #1a202c;
  font-weight: 600;
  line-height: 1.3;
}

.usp-card p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
  font-weight: 400;
}

/* Job Board Section */
.job-board {
  background-color: #ffffff;
  padding: 100px 20px;
  margin-top: 80px;
  border-top: 1px solid #f0f0f0;
}

.job-board h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #1c7c7c;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.job-intro {
  text-align: center;
  font-size: 1.05rem;
  color: #666666;
  margin-bottom: 30px;
}

.job-search {
  text-align: center;
  margin-bottom: 50px;
}

.job-search input {
  width: 100%;
  max-width: 400px;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  background-color: #ffffff;
  transition: border-color 0.2s ease;
}

.job-search input:focus {
  outline: none;
  border-color: #000000;
}

.job-listings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

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

.job-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #1c7c7c;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.job-card:hover::before {
  transform: translateX(0);
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e0;
}

.job-card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 500;
}

.job-card p {
  font-size: 0.9rem;
  color: #666666;
  margin: 8px 0;
  line-height: 1.5;
}

.job-button {
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #ffffff;
  color: #1c7c7c;
  text-decoration: none;
  border: 2px solid #1c7c7c;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.2s ease;
  display: inline-block;
}

.job-button:hover {
  background-color: #1c7c7c;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(28, 124, 124, 0.3);
}

.job-teaser {
  font-size: 0.85rem !important;
  color: #555555 !important;
  margin: 12px 0 !important;
  line-height: 1.4 !important;
}

/* Practice Owner Section */
.practice-owner-section {
  background: #f8fafc;
  padding: 80px 20px;
  margin-top: 60px;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

.practice-owner-section h2 {
  font-size: 2.5rem;
  color: #2d5a5a;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.practice-owner-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.practice-owner-content p {
  font-size: 1.2rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 24px;
}

.practice-owner-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Dental Professional Section */
.dental-professional-section {
  background: #2d5a5a;
  padding: 80px 20px;
  margin-top: 60px;
  border-top: 1px solid #f0f0f0;
}

.dental-professional-section h2 {
  font-size: 2.5rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.dental-professional-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.dental-professional-content p {
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.95;
}

.dental-professional-cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons-center {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
}

.cta-buttons-center .btn {
  min-width: 200px;
  font-size: 1.1rem;
  padding: 18px 32px;
}

/* Reviews Section */
.reviews {
  background-color: #ffffff;
  padding: 100px 20px;
  margin-top: 80px;
  border-top: 1px solid #f0f0f0;
}

.reviews h2 {
  font-size: 2.2rem;
  text-align: center;
  color: #1c7c7c;
  margin-bottom: 50px;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.review-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  padding: 40px;
  transition: border-color 0.2s ease;
}

.review-card:hover {
  border-color: #000000;
}

.stars {
  color: #000000;
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.quote {
  font-style: italic;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.reviewer {
  font-weight: 500;
  color: #000000;
  font-size: 0.9rem;
}

/* Contact Hero Section */
.contact-hero {
  padding: calc(72px + 3rem) 0 120px;
  background-image: url("./attached_assets/19db6faa-78cc-11f0-ab7d-0242ac120004.avif");
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  position: relative;
}

.contact-hero-content h1::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #e6b54a;
  border-radius: 2px;
}

.contact-hero-subtitle {
  font-size: 1.5rem;
  color: #e6b54a;
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 600;
}

.contact-hero .hero-description {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 24px;
  line-height: 1.7;
  font-weight: 400;
}

/* Contact Information Section */
.contact-info-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 24px;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 600;
}

.contact-info-card p {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.contact-info-card a {
  color: #1c7c7c;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-info-card a:hover {
  color: #155f5f;
}

/* Why Contact Us Section */
.why-contact-us {
  padding: 80px 20px;
  background: #ffffff;
}

.why-contact-us h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1c7c7c;
  margin-bottom: 60px;
  font-weight: 600;
}

.why-contact-us .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.why-contact-us .benefit-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f8fafc;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.why-contact-us .benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.why-contact-us .benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.why-contact-us .benefit-item p {
  font-size: 1.1rem;
  color: #1a1a1a;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* Quick Links Section */
.quick-links-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.quick-links-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 60px;
  font-weight: 600;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.quick-link-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.quick-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quick-link-card h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 600;
}

.quick-link-card p {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 32px;
}

.quick-link-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-link-buttons .btn {
  min-width: 140px;
}

/* Contact Section */
.contact-section {
  background-color: #ffffff;
  padding: 100px 20px;
  border-top: 1px solid #f0f0f0;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #1c7c7c;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: -0.02em;
  position: relative;
}

.contact-section h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #1c7c7c;
  border-radius: 2px;
}

.contact-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  color: #666666;
  line-height: 1.7;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #000000;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  background-color: #ffffff;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000000;
}

/* Contact Form Row Layout */
.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1;
  min-width: 180px;
}

/* GDPR checkbox */
.form-group.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.5;
}

.form-group.checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: auto;
}

.contact-button {
  background-color: #1c7c7c;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-weight: 600;
}

.contact-button:hover {
  background-color: #155f5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(28, 124, 124, 0.4);
}

/* Footer */
.footer {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  background-color: #ffffff;
  color: #000000;
  padding: 80px 20px 40px;
  border-top: 1px solid #f0f0f0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto 40px;
  width: 100%;
}

.footer-brand {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 300px;
  color: #666666;
}

.footer-brand strong {
  color: #000000;
  font-weight: 600;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  color: #666666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links li a:hover {
  color: #000000;
}

/* Footer Bottom Row */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid #f0f0f0;
  padding-top: 30px;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: #999999;
  width: 100%;
}

.legal-links {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.legal-links li a {
  color: #999999;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-links li a:hover {
  color: #000000;
}

/* Employers Page Styles */
.employer-hero {
  padding: calc(72px + 3rem) 0 120px;
  background-image: url(./attached_assets/dc80f304-78d6-11f0-9de2-0242ac120004.avif);
  background-size: cover;
  background-position: center 40%;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.employer-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

.employer-hero::after {
  content: "🏥";
  position: absolute;
  bottom: 20%;
  right: 15%;
  font-size: 6rem;
  opacity: 0.03;
  z-index: 0;
  transform: rotate(10deg);
}

.employer-hero-content {
  position: relative;
  z-index: 1;
}

.employer-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  position: relative;
  line-height: 1.1;
}

.employer-hero-content h1::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #e6b54a;
  border-radius: 2px;
}

.employer-hero-subtitle {
  font-size: 1.5rem;
  color: #e6b54a;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.employer-hero .hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-description {
  font-size: 1.2rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 60px;
  font-weight: 600;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e6b54a, #d4a029);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-item p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

.section-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Who We Hire Section */
.who-we-hire {
  padding: 100px 20px;
}

.who-we-hire h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1c7c7c;
  margin-bottom: 60px;
  font-weight: 600;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.role-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.role-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.role-card h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin: 0;
  font-weight: 600;
}

.roles-description {
  text-align: center;
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Better Than Indeed Section */
.better-than-indeed {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  color: white;
  text-align: center;
}

.better-than-indeed h2 {
  font-size: 2.5rem;
  margin-bottom: 32px;
  font-weight: 600;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.better-than-indeed .section-description {
  color: #ffffff;
}

/* Our Process Section */
.our-process {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.our-process h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1c7c7c;
  margin-bottom: 80px;
  font-weight: 600;
}

/* Trusted Partner Section */
.trusted-partner {
  padding: 100px 20px;
  text-align: center;
}

.trusted-partner h2 {
  font-size: 2.5rem;
  color: #1c7c7c;
  margin-bottom: 32px;
  font-weight: 600;
}
.services-overview {
  padding: 100px 20px;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.services-intro h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-weight: 600;
}

.services-intro p {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e0;
}

.service-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 600;
}

.service-card p {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.service-list li {
  color: #555555;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 20px;
}

.service-list li:before {
  content: "•";
  color: #3b82f6;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.how-we-work {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 100px 20px;
}

.how-we-work h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 80px;
  font-weight: 600;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Specific layout classes for thank-you page */
.process-steps.two-col-layout {
  grid-template-columns: repeat(2, 1fr);
}

.process-steps.three-col-layout {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .process-steps,
  .process-steps.two-col-layout,
  .process-steps.three-col-layout {
    grid-template-columns: 1fr;
  }
}

.step {
  text-align: center;
  background: #ffffff;
  padding: 40px 24px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e6b54a, #d4a029);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 24px;
}

.step h3 {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 600;
}

.step p {
  color: #666666;
  line-height: 1.6;
}

.why-choose-us {
  padding: 100px 20px;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 80px;
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-item {
  text-align: center;
}

.benefit-item h3 {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 600;
}

.benefit-item p {
  color: #666666;
  line-height: 1.7;
}

/* Why Work With Us Section */
.why-work-with-us {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.why-work-with-us h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1c7c7c;
  margin-bottom: 60px;
  font-weight: 600;
}

.benefit-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #1c7c7c;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.benefit-card h3 {
  font-size: 1.4rem;
  color: #1c7c7c;
  margin-bottom: 16px;
  font-weight: 600;
}

.benefit-card p {
  color: #666666;
  line-height: 1.7;
  font-size: 1rem;
}

/* Jobs CTA Section */
.jobs-cta {
  background: linear-gradient(135deg, #1c7c7c 0%, #2c5530 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.jobs-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  font-weight: 600;
}

.jobs-cta p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.employer-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  font-weight: 600;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* About Page Styles */
.about-hero {
  padding: calc(72px + 3rem) 0 120px;
  background-image: url(./attached_assets/7d0b353c-78d7-11f0-9471-0242ac120004.avif);
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

.about-hero::after {
  content: "👨‍⚕️";
  position: absolute;
  top: 25%;
  left: 8%;
  font-size: 5rem;
  opacity: 0.025;
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

.about-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  position: relative;
  line-height: 1.1;
}

.about-hero-content h1::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #e6b54a;
  border-radius: 2px;
}

.about-hero-subtitle {
  font-size: 1.5rem;
  color: #666666;
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.our-story {
  padding: 100px 20px;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.story-text h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 32px;
  font-weight: 600;
}

.story-text p {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.story-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.our-values {
  padding: 100px 20px;
  background: #f8fafc;
}

.our-values h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 80px;
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.value-card h3 {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 600;
}

.value-card p {
  color: #666666;
  line-height: 1.6;
}

.our-team {
  padding: 100px 20px;
}

.our-team h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-weight: 600;
}

.team-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666666;
  max-width: 700px;
  margin: 0 auto 80px;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
}

.member-photo {
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 600;
}

.member-title {
  font-size: 1rem;
  color: #3b82f6;
  margin-bottom: 16px;
  font-weight: 500;
}

.member-bio {
  color: #666666;
  line-height: 1.6;
}

.our-stats {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.our-stats .stat-number {
  font-size: 3rem;
  font-weight: 600;
  color: #e6b54a !important;
  margin-bottom: 8px;
}

.our-stats .stat-label {
  font-size: 1rem;
  color: #1c7c7c !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-cta {
  padding: 100px 20px;
  text-align: center;
}

.about-cta .cta-content h2 {
  font-size: 2.5rem;
  color: #1c7c7c;
  margin-bottom: 24px;
  font-weight: 600;
}

.about-cta .cta-content p {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Responsiveness for About Page */
@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-text h2 {
    font-size: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }

  .employer-hero-subtitle,
  .about-hero-subtitle,
  .contact-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
  }
}

/* Mobile Styles for Contact Page */
@media (max-width: 768px) {
  .contact-hero {
    padding: calc(72px + 2rem) 0 80px;
  }

  .contact-hero-content h1 {
    font-size: 2.5rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-info-card {
    padding: 32px 24px;
  }

  .why-contact-us .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-contact-us .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quick-link-card {
    padding: 32px 24px;
  }

  .quick-link-buttons {
    flex-direction: column;
    align-items: center;
  }

  .quick-link-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero {
    padding: calc(72px + 2rem) 0 80px;
    min-height: 80vh;
  }

  .hero-content {
    max-width: 90%;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 24px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 32px;
  }

  .hero-description {
    font-size: 1.2rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .section-cta {
    flex-direction: column;
    align-items: center;
  }

  .practice-owner-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons-center {
    flex-direction: column;
    align-items: center;
  }

  /* CV Upload Page Mobile Styles */
  .why-work-with-us {
    padding: 60px 20px;
  }

  .why-work-with-us h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .benefit-card {
    padding: 30px 20px;
  }

  .jobs-cta {
    padding: 60px 20px;
  }

  .jobs-cta h2 {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-photo {
    height: 300px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .logo {
    font-size: 1.5rem;
  }

  /* Show mobile menu button */
  .mobile-menu-btn {
    display: flex;
  }

  /* Hide desktop nav links by default on mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: #1a1a1a;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 30px;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    font-size: 1.1rem;
    padding: 15px 0;
    display: block;
    width: 100%;
    border-bottom: 1px solid #333333;
    color: #ffffff;
  }

  .nav-links li a:hover {
    color: #e6b54a;
  }

  .nav-links li a::after {
    display: none;
  }

  .form-row {
    flex-direction: column;
  }

  .footer-top {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }
}

/* Jobs Page Styles */
.jobs-hero {
  padding: calc(72px + 3rem) 0 120px;
  background-image: url(./attached_assets/02eaf45a-78d6-11f0-a9b5-0242ac120004.avif);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.jobs-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

.jobs-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.jobs-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.jobs-hero-content h1::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #e6b54a;
  border-radius: 2px;
}

.jobs-hero-subtitle {
  font-size: 1.5rem;
  color: #e6b54a;
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.jobs-hero .hero-description {
  font-size: 1.2rem;
  color: #ffffff !important;
  margin-bottom: 24px;
  line-height: 1.7;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: 400;
}

.jobs-hero-subtitle.accent,
.about-hero-subtitle.accent,
.employer-hero-subtitle.accent,
h1 .accent,
p.accent {
  color: #e6b54a !important;
}

.jobs-hero .hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* CV Upload Section */
.cv-upload-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.cv-upload-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cv-upload-text h2 {
  font-size: 2.5rem;
  color: #1c7c7c;
  margin-bottom: 24px;
  font-weight: 600;
  position: relative;
}

.cv-upload-text h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 3px;
  background: #1c7c7c;
  border-radius: 2px;
}

.cv-upload-text p {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cv-benefits {
  list-style: none;
  padding: 0;
}

.cv-benefits li {
  color: #555555;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  padding-left: 24px;
  font-size: 1rem;
  line-height: 1.6;
}

.cv-benefits li:before {
  content: "✓";
  color: #e6b54a;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cv-upload-area {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.upload-box {
  border: 2px dashed #cbd5e0;
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  background: #f8fafc;
}

.upload-box:hover {
  border-color: #3b82f6;
  background: #eff6ff;
}

.upload-box.dragover {
  border-color: #3b82f6;
  background: #eff6ff;
  transform: scale(1.02);
}

.upload-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.upload-box h3 {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 600;
}

.upload-box p {
  color: #666666;
  margin-bottom: 12px;
}

.upload-btn {
  background: none;
  border: none;
  color: #3b82f6;
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}

.upload-btn:hover {
  color: #1d4ed8;
}

.upload-box small {
  color: #9ca3af;
  font-size: 0.875rem;
}

.cv-form {
  margin-top: 32px;
}

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

.cv-form input,
.cv-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cv-form input:focus,
.cv-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.cv-submit-btn {
  width: 100%;
  margin-top: 16px;
  background-color: #1c7c7c;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-weight: 600;
}

.cv-submit-btn:hover:not(:disabled) {
  background-color: #155f5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(28, 124, 124, 0.4);
}

.cv-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* What Happens Next Section */
.what-happens-next {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.what-happens-next h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 80px;
  font-weight: 600;
}

.job-filters {
  padding: 40px 20px;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
}

.filter-form {
  max-width: 1000px;
  margin: 0 auto;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: end;
}

.filter-group {
  flex: 1 1 150px;
}

.filter-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #000000;
  font-weight: 500;
}

.filter-group select,
.filter-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  background-color: #ffffff;
  transition: border-color 0.2s ease;
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: #000000;
}

.filter-button {
  background-color: #1c7c7c;
  color: #ffffff;
  border: none;
  padding: 14px 24px;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-weight: 600;
}

.filter-button:hover {
  background-color: #155f5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(28, 124, 124, 0.4);
}

/* Job Listings Section */
.job-listings-section {
  padding: 80px 20px;
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 600;
}

.results-count {
  margin: 20px auto;
  font-size: 1rem;
  color: #666666;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

.job-listing-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.job-listing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #1c7c7c;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.job-listing-card:hover::before {
  transform: translateX(0);
}

.job-listing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e0;
}

.job-header {
  margin-bottom: 20px;
}

/* Thank You Page Styles */
.thank-you-hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thank-you-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(16, 185, 129, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.thank-you-hero::after {
  content: "✨";
  position: absolute;
  bottom: 20%;
  left: 15%;
  font-size: 4rem;
  opacity: 0.04;
  z-index: 0;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  animation: bounce 1s ease-in-out;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.thank-you-content h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  position: relative;
}

.thank-you-content h1::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #1c7c7c;
  border-radius: 2px;
}

.thank-you-subtitle {
  font-size: 1.25rem;
  color: #666666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.thank-you-details {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
  text-align: left;
}

.thank-you-details p {
  margin-bottom: 12px;
  color: #374151;
  line-height: 1.6;
}

.thank-you-details p:last-child {
  margin-bottom: 0;
}

.thank-you-details strong {
  color: #1f2937;
}

.related-actions {
  padding: 80px 20px;
  background: #f8fafc;
  text-align: center;
}

.related-content h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 600;
}

.related-content p {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 40px;
}

.action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile Styles for Thank You Page */
@media (max-width: 768px) {
  .thank-you-hero {
    padding: 80px 20px 60px;
  }

  .thank-you-content h1 {
    font-size: 2.5rem;
  }

  .thank-you-subtitle {
    font-size: 1.1rem;
  }

  .thank-you-details {
    padding: 20px;
    margin-bottom: 32px;
  }

  .related-content h2 {
    font-size: 2rem;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .action-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .success-icon {
    font-size: 3rem;
  }

  .employer-hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }
}

.job-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 12px;
  line-height: 1.3;
}

.job-description {
  margin-bottom: 16px;
}

.job-description strong {
  display: unset !important;
}

.job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.job-meta span {
  font-size: 0.9rem;
  color: #4a5568;
  background: #f7fafc;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 500;
}

.job-details {
  margin-bottom: 24px;
}

.job-details .salary {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 16px;
}

.job-details .description {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 20px;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.job-tags .tag {
  background: #e6b54a;
  color: #2e2e2e;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.job-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.job-view-btn {
  padding: 10px 20px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  background: #f8fafc !important;
  color: #475569 !important;
  border: 1px solid #e2e8f0 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.job-view-btn:hover {
  background: #e2e8f0 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(71, 85, 105, 0.15);
}

.posted-date {
  font-size: 0.875rem;
  color: #6b7280;
}

.job-apply-btn {
  padding: 12px 24px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.job-apply-btn {
  background-color: #1c7c7c !important;
  color: #ffffff !important;
  border: 2px solid #1c7c7c !important;
}

.job-apply-btn:hover {
  background-color: #155f5f !important;
  border-color: #155f5f !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(28, 124, 124, 0.4);
}

.load-more {
  text-align: center;
  margin-top: 60px;
  padding: 0 20px;
}

.job-listings-container {
  max-width: 1200px;
  margin: 0 auto;
}

.job-listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  padding: 0 20px;
}

.job-card-extended {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.job-card-extended:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e0;
}

.job-title-extended {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 500;
}

.company-name {
  font-size: 1rem;
  color: #3b82f6;
  margin-bottom: 10px;
}

.location-info,
.salary-info {
  font-size: 0.9rem;
  color: #666666;
  margin: 8px 0;
}

.job-description-short {
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.apply-button {
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #1c7c7c;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.2s ease;
  display: inline-block;
}

.apply-button:hover {
  background-color: #155f5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(28, 124, 124, 0.4);
}

/* Admin Page Styles */
.admin-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 80px 0 60px;
  text-align: center;
}

/* Dashboard Stats */
.admin-stats {
  padding: 40px 20px;
  background: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666666;
  font-weight: 500;
}

/* Admin Tabs */
.admin-tabs-section {
  padding: 40px 20px 80px;
}

.admin-tabs {
  display: flex;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  padding: 16px 24px;
  background: none;
  border: none;
  font-size: 1rem;
  color: #666666;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
  font-weight: 500;
}

.tab-btn.active {
  color: #1a1a1a;
  border-bottom-color: #3b82f6;
}
.tab-btn:hover {
  color: #1a1a1a;
}

.tab-content {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
}

.tab-content.active {
  display: block;
}

.admin-hero h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 600;
  position: relative;
}

.admin-hero h1::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #1c7c7c;
  border-radius: 2px;
}

.admin-hero p {
  font-size: 1.1rem;
  color: #666666;
}

.admin-form-section {
  padding: 60px 20px;
}

.admin-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.admin-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  margin-bottom: 60px;
}

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

.admin-form .form-group {
  margin-bottom: 24px;
}

.admin-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.job-management {
  margin-top: 40px;
}

.job-management h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-weight: 600;
}

.job-management-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.job-controls {
  display: flex;
  gap: 16px;
  align-items: center;
}

.job-controls input,
.job-controls select {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.9rem;
}

.job-title-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.active {
  background: #dcfce7;
  color: #166534;
}

.status-badge.inactive {
  background: #fef2f2;
  color: #991b1b;
}

.status-badge.rejected {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.job-submission-card.rejected-job {
  border-left: 4px solid #f87171;
  background-color: #fefefe;
  opacity: 0.9;
}

.job-actions {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

/* Job card specific button styling - override large default buttons */
.job-actions .btn {
  padding: 10px 16px;
  font-size: 0.85rem;
  min-width: auto;
  flex: 1;
  text-align: center;
}

.edit-btn {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.edit-btn:hover {
  background: #2563eb;
}

.admin-job-card.inactive {
  opacity: 0.7;
  background: #f9fafb;
}

.job-dates {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 16px;
}

.job-dates small {
  color: #6b7280;
  font-size: 0.8rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 0;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 90%;
  overflow-y: auto;
}

.modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #1a1a1a;
}

.close {
  color: #666666;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

.close:hover {
  color: #1a1a1a;
}

.modal .admin-form {
  margin: 0;
  box-shadow: none;
  border: none;
  border-radius: 0 0 12px 12px;
}

/* Applications Styles */
.applications-management h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-weight: 600;
}

.applications-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.application-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
}

.application-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.application-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #1a1a1a;
}

.application-date {
  color: #666666;
  font-size: 0.9rem;
}

.application-details p {
  margin: 8px 0;
  color: #555555;
}

.application-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.no-applications {
  text-align: center;
  color: #666666;
  font-style: italic;
  padding: 40px;
}

/* Settings Styles */
.settings-management h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-weight: 600;
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.setting-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
}

.setting-card h4 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: #1a1a1a;
}

.setting-card p {
  color: #666666;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.btn-danger {
  background: #ef4444;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-danger:hover {
  background: #dc2626;
}

/* CV Submission Card Layout */
.cv-submission-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.cv-submission-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.submission-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f3f4f6;
}

.submission-header h4 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
}

.submission-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.submission-type-badge {
  background: #f1f5f9;
  color: #475569;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid #e2e8f0;
}

.submission-type-badge.application {
  background: #dcfce7;
  color: #166534;
  border-color: #bbf7d0;
}

.submission-type-badge.cv-upload {
  background: #e0f2fe;
  color: #155e75;
  border-color: #bae6fd;
}

.application-note, .cv-upload-note {
  background: #f8fafc;
  border-left: 4px solid #3b82f6;
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 0 8px 8px 0;
}

.application-note {
  border-left-color: #10b981;
  background: #f0fdf4;
}

.cv-upload-note {
  border-left-color: #0ea5e9;
  background: #f0f9ff;
}

.application-note p, .cv-upload-note p {
  margin: 0;
  font-size: 0.9rem;
  color: #374151;
}

.submission-detail-section {
  margin-bottom: 24px;
}

.submission-detail-section h5 {
  margin: 0 0 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-item.full-width {
  grid-column: 1 / -1;
}

.detail-item label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-item span {
  font-size: 0.95rem;
  color: #1f2937;
  line-height: 1.5;
}

.qualifications {
  background: #f9fafb;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #374151;
}

/* Responsive adjustments for CV submissions */
@media (max-width: 768px) {
  .cv-submission-card {
    padding: 16px;
    margin-bottom: 16px;
  }
  
  .submission-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .submission-badges {
    align-items: flex-start;
  }
  
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Contact Submission Card Layout */
.contact-submission-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  border-left: 4px solid #8b5cf6;
}

.contact-submission-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.contact-submission-card .submission-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f8fafc;
}

.contact-submission-card .submission-header h4 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-submission-card .submission-header h4::before {
  content: "📧";
  font-size: 1.2rem;
}

.contact-submission-card .submission-header small {
  background: #f1f5f9;
  color: #475569;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.contact-message {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
  font-style: italic;
  position: relative;
}

.contact-message::before {
  content: '"';
  position: absolute;
  top: -5px;
  left: 8px;
  font-size: 2rem;
  color: #8b5cf6;
  font-weight: bold;
  line-height: 1;
}

.contact-message::after {
  content: '"';
  position: absolute;
  bottom: -15px;
  right: 8px;
  font-size: 2rem;
  color: #8b5cf6;
  font-weight: bold;
  line-height: 1;
}

/* Special styling for contact submission detail sections */
.contact-submission-card .submission-detail-section h5 {
  margin: 0 0 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #6b46c1;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-submission-card .submission-detail-section:nth-of-type(1) h5::before {
  content: "👤";
}

.contact-submission-card .submission-detail-section:nth-of-type(2) h5::before {
  content: "💬";
}

.contact-submission-card .submission-detail-section:nth-of-type(3) h5::before {
  content: "✅";
}

/* Enhanced detail items for contact submissions */
.contact-submission-card .detail-item label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #8b5cf6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-submission-card .detail-item span {
  font-size: 0.95rem;
  color: #1f2937;
  line-height: 1.5;
  font-weight: 500;
}

/* Special styling for consent indicators */
.contact-submission-card .detail-item span.consent-yes {
  color: #059669;
  font-weight: 600;
}

.contact-submission-card .detail-item span.consent-no {
  color: #dc2626;
  font-weight: 600;
}

/* Contact submission actions styling */
.contact-submission-card .submission-actions {
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
  margin-top: 20px;
  background: #faf5ff;
  border-radius: 8px;
  padding: 16px;
  margin-left: -24px;
  margin-right: -24px;
  margin-bottom: -24px;
}

/* Responsive adjustments for contact submissions */
@media (max-width: 768px) {
  .contact-submission-card {
    padding: 16px;
    margin-bottom: 16px;
  }
  
  .contact-submission-card .submission-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .contact-submission-card .submission-actions {
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: -16px;
  }
}

/* Admin Panel Submission Actions - Equal Button Sizes */
.submission-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
  margin-top: 20px;
}

.submission-actions .btn {
  height: 44px;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Job Submission Card Styling */
.job-submission-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Enhanced Manage Jobs Layout */
.admin-job-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border-left: 6px solid #1c7c7c;
}

.admin-job-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.admin-job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f1f5f9;
}

.admin-job-header h4 {
  font-size: 1.6rem;
  color: #1a1a1a;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-job-header h4::before {
  content: "💼";
  font-size: 1.4rem;
}

/* Enhanced delete button */
.delete-btn {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.25);
  display: flex;
  align-items: center;
  gap: 4px;
}

.delete-btn::before {
  content: "🗑️";
  font-size: 0.9rem;
}

.delete-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.admin-job-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #666666;
}

.admin-job-salary {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.admin-job-description {
  color: #555555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.admin-job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-job-tags .tag {
  background: #f1f5f9;
  color: #475569;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.no-jobs {
  grid-column: 1 / -1;
  text-align: center;
  color: #666666;
  font-style: italic;
  padding: 40px;
}

/* Enhanced Admin Styles */
.admin-nav {
  background: #1a1a1a;
  border-bottom: 1px solid #333;
}

.admin-nav .logo {
  color: #ffffff;
}

.admin-nav .nav-links a {
  color: #ffffff;
}

.logout-btn {
  background: #ef4444 !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 4px !important;
  text-decoration: none !important;
}

.logout-btn:hover {
  background: #dc2626 !important;
}

/* Dashboard Styles */
.admin-dashboard {
  margin: 80px auto;
  padding: 40px 20px;
  background: #f8fafc;
}

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

.dashboard-header h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 600;
}

.dashboard-header p {
  font-size: 1.1rem;
  color: #666666;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.stat-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  font-size: 2rem;
  background: #f1f5f9;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-content h3 {
  font-size: 2rem;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.stat-content p {
  font-size: 0.9rem;
  color: #666666;
  margin: 0;
}

.quick-actions {
  margin-bottom: 40px;
}

.quick-actions h2 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-weight: 600;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.action-btn {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #1a1a1a;
}

.action-btn:hover {
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
}

.action-btn.active {
  border-color: #3b82f6;
  background: #eff6ff;
}

.action-icon {
  font-size: 1.5rem;
}

/* Admin Sections */
.admin-section {
  padding: 60px 20px;
  background: #ffffff;
  display: none;
}

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

.admin-section .section-header h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 600;
}

.admin-section .section-header p {
  font-size: 1rem;
  color: #666666;
}

/* Enhanced Job Management */
.jobs-filter {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.jobs-filter select {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  background: #ffffff;
  min-width: 140px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.jobs-filter select:hover {
  border-color: #007bff;
}

.jobs-filter select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

.admin-job-card.paused {
  opacity: 0.8;
  border-left: 6px solid #f59e0b;
}

.admin-job-card.filled {
  opacity: 0.8;
  border-left: 6px solid #10b981;
}

/* Enhanced status and title section */
.job-title-status {
  display: flex;
  /* flex-direction: column; */
  gap: 12px;
}

.status-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.status-badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.status-badge.active {
  background: #dcfce7;
  color: #166534;
  border-color: #bbf7d0;
}

.status-badge.paused {
  background: #fef3c7;
  color: #92400e;
  border-color: #fed7aa;
}

.status-badge.filled {
  background: #dbeafe;
  color: #1e40af;
  border-color: #93c5fd;
}

.status-badge.featured-badge {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #ffffff;
  border-color: #fbbf24;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.status-badges {
  display: flex;
  gap: 8px;
  align-items: center;
}

.admin-job-card.featured {
  border-left: 6px solid #f59e0b;
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.15);
}

/* Enhanced job actions */
.job-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.edit-btn {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.25);
  display: flex;
  align-items: center;
  gap: 4px;
}

.edit-btn::before {
  content: "✏️";
  font-size: 0.9rem;
}

.edit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Enhanced job detail sections */
.admin-job-card .job-detail-section {
  margin-bottom: 24px;
}

.admin-job-card .job-detail-section h5 {
  margin: 0 0 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1c7c7c;
  padding-bottom: 8px;
  border-bottom: 2px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-job-card .job-detail-section:nth-of-type(1) h5::before {
  content: "🏢";
}

.admin-job-card .job-detail-section:nth-of-type(2) h5::before {
  content: "💼";
}

.admin-job-card .job-detail-section:nth-of-type(3) h5::before {
  content: "📞";
}

.admin-job-card .job-detail-section:nth-of-type(4) h5::before {
  content: "📝";
}

.admin-job-card .detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.admin-job-card .detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-job-card .detail-item label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1c7c7c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-job-card .detail-item span {
  font-size: 0.95rem;
  color: #1f2937;
  line-height: 1.5;
  font-weight: 500;
}

.job-meta-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #f1f5f9;
  display: flex;
  gap: 24px;
  background: #f8fafc;
  border-radius: 8px;
  padding: 16px;
  margin-left: -28px;
  margin-right: -28px;
  margin-bottom: -28px;
}

.job-meta-info small {
  color: #6b7280;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Responsive adjustments for Manage Jobs */
@media (max-width: 768px) {
  .admin-job-card {
    padding: 20px;
    margin-bottom: 16px;
  }
  
  .admin-job-header {
    flex-direction: column;
    gap: 16px;
  }
  
  .job-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .edit-btn, .delete-btn {
    width: 100%;
    justify-content: center;
  }
  
  .admin-job-card .detail-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .job-meta-info {
    flex-direction: column;
    gap: 8px;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -20px;
  }
}

/* Applications Section */
.applications-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.application-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
}

.application-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.application-header h4 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin: 0;
  font-weight: 600;
}

.application-date {
  color: #666666;
  font-size: 0.9rem;
}

.application-details p {
  margin: 8px 0;
  color: #555555;
}

.application-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.no-applications {
  text-align: center;
  color: #666666;
  font-style: italic;
  padding: 40px;
}

/* Settings Section */
.settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.settings-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 30px;
}

.settings-card h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 600;
}

.data-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.system-info p {
  margin: 12px 0;
  color: #555555;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 0;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-header {
  padding: 20px 30px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #1a1a1a;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  color: #000000;
}

.modal .admin-form {
  margin: 30px;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Notifications */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 24px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 500;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.3s ease;
}

.notification.success {
  background: #10b981;
}

.notification.error {
  background: #ef4444;
}

.notification.info {
  background: #3b82f6;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Loading states */
.loading {
  text-align: center;
  padding: 40px 20px;
  color: #6b7280;
  font-size: 16px;
}

.loading::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  border-top-color: #3b82f6;
  animation: spin 1s ease-in-out infinite;
  margin-right: 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Job Submission Page Styles */
.job-submission-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.job-submission-content {
  max-width: 800px;
  margin: 0 auto;
}

.submission-intro {
  text-align: center;
  margin-bottom: 60px;
}

.submission-intro h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 600;
  position: relative;
}

.submission-intro h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #1c7c7c;
  border-radius: 2px;
}

.submission-intro p {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.7;
}

.job-submission-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  margin-bottom: 80px;
}

.form-section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e2e8f0;
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 32px;
}

.form-section h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 2px solid #e6b54a;
  display: inline-block;
}

.job-submission-form .form-group {
  margin-bottom: 24px;
}

.job-submission-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.job-submission-form input,
.job-submission-form select,
.job-submission-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #ffffff;
}

.job-submission-form input:focus,
.job-submission-form select:focus,
.job-submission-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.job-submission-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.job-submission-form .form-group.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.job-submission-form .form-group.checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: auto;
  flex-shrink: 0;
}

.submit-job-btn {
  width: 100%;
  background: #1c7c7c;
  color: #ffffff;
  border: none;
  padding: 18px 32px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-weight: 600;
  margin-top: 24px;
}

.submit-job-btn:hover {
  background: #155f5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(28, 124, 124, 0.4);
}

.what-happens-next {
  text-align: center;
  margin-top: 60px;
}

.what-happens-next h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 60px;
  font-weight: 600;
}

/* Job Details Page Styles */
.breadcrumb-section {
  padding: 20px 0;
  padding-top: 92px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.back-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: #2563eb;
}

.job-details-section {
  padding: 40px 0;
  width: 100%;
}

.job-details-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.job-details-card .job-header h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 20px;
}

.job-content {
  display: grid;
  grid-template-columns: auto;
  gap: 40px;
  margin-top: 32px;
}

.job-main-info h3 {
  font-size: 1.3rem;
  color: #1a202c;
  margin-bottom: 16px;
  font-weight: 600;
}

.salary-section,
.description-section,
.requirements-section,
.benefits-section,
.tags-section {
  margin-bottom: 32px;
}

.salary-section .salary {
  font-size: 1.4rem;
  font-weight: 600;
  color: #059669;
}

.description-section .description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #000000;
}

.apply-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
}

.apply-card h3 {
  font-size: 1.2rem;
  color: #1a202c;
  margin-bottom: 12px;
  font-weight: 600;
}

.apply-card p {
  color: #4a5568;
  margin-bottom: 20px;
}

.apply-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.practice-info {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
}

.practice-info h3 {
  font-size: 1.2rem;
  color: #1a202c;
  margin-bottom: 16px;
  font-weight: 600;
}

.similar-jobs {
  padding: 60px 0;
  background: #f8fafc;
}

.similar-jobs h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #1a202c;
  margin-bottom: 40px;
  font-weight: 600;
}

.similar-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.similar-job-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.similar-job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.similar-job-card h4 {
  font-size: 1.2rem;
  color: #1a202c;
  margin-bottom: 12px;
  font-weight: 600;
}

.similar-job-card .salary {
  font-weight: 600;
  color: #059669;
  margin-bottom: 16px;
}

.similar-job-buttons {
  display: flex;
  gap: 12px;
}

.similar-job-buttons .btn {
  flex: 1;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.9rem;
}

/* Mobile Styles for Job Details */
@media (max-width: 768px) {
  .job-details-card {
    padding: 24px;
  }

  .job-details-card .job-header h1 {
    font-size: 2rem;
  }

  .job-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .apply-buttons {
    flex-direction: column;
  }

  .similar-job-buttons {
    flex-direction: column;
  }
}

/* Mobile Styles for Jobs Page */
@media (max-width: 768px) {
  .jobs-hero-content h1 {
    font-size: 2.5rem;
  }

  .jobs-hero-subtitle {
    font-size: 1.1rem;
  }

  .filter-group {
    flex: 1 1 100%;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  .job-listing-card {
    padding: 24px;
  }

  .job-header h3 {
    font-size: 1.3rem;
  }

  .job-meta {
    flex-direction: column;
    gap: 8px;
  }

  .job-footer {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .job-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .job-apply-btn,
  .job-view-btn {
    width: 100% !important;
    text-align: center !important;
  }

  .job-listings-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  /* Application Page Styles */
  .job-details-section {
    padding: 60px 20px;
    background: #f8fafc;
  }

  .job-details-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }

  .job-details-card .job-header {
    margin-bottom: 24px;
  }

  .job-details-card .job-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
  }

  .job-details-card .job-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .job-details-card .job-meta span {
    font-size: 1rem;
    color: #4a5568;
    background: #f7fafc;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
  }

  .job-details-card .salary {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
  }

  .job-details-card .description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .job-details-card .job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .job-details-card .job-tags .tag {
    background: #e6b54a;
    color: #2e2e2e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
  }

  .application-form-section {
    padding: 80px 20px;
    background: #ffffff;
  }

  .application-content {
    max-width: 800px;
    margin: 0 auto;
  }

  .application-intro {
    text-align: center;
    margin-bottom: 60px;
  }

  .application-intro h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
  }

  .application-intro h2::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #1c7c7c;
    border-radius: 2px;
  }

  .application-intro p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
  }

  .application-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
  }

  .application-form .form-section {
    margin-bottom: 40px;
  }

  .application-form .form-section:last-of-type {
    margin-bottom: 0;
  }

  .application-form .form-section h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
  }

  .application-submit-btn {
    width: 100%;
    padding: 16px 32px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-top: 20px;
    background-color: #1c7c7c !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-family: inherit !important;
  }

  .application-submit-btn:hover {
    background-color: #155f5f !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(28, 124, 124, 0.4) !important;
  }

  .application-form .cv-upload-area {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e2e8f0;
  }

  .application-form .upload-box h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .file-info {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
  }

  .file-info p {
    margin-bottom: 8px;
    color: #0c4a6e;
  }

  .file-info p:last-of-type {
    margin-bottom: 16px;
  }

  /* Mobile Styles for Application Page */
  @media (max-width: 768px) {
    .job-details-card {
      padding: 24px;
    }

    .job-details-card .job-header h2 {
      font-size: 1.5rem;
    }

    .job-details-card .job-meta {
      flex-direction: column;
      gap: 8px;
    }

    .application-intro h2 {
      font-size: 2rem;
    }

    .application-form {
      padding: 24px;
    }

    .application-form .cv-upload-area {
      padding: 20px;
    }
  }

  /* Job Submission Mobile Styles */
  .job-submission-form {
    padding: 32px 24px;
  }

  .job-submission-form .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .submission-intro h2 {
    font-size: 2rem;
  }

  .form-section h3 {
    font-size: 1.25rem;
  }

  /* CV Upload Mobile Styles */
  .cv-upload-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cv-upload-text h2 {
    font-size: 2rem;
  }

  .cv-upload-text p {
    font-size: 1rem;
  }

  .cv-upload-area {
    padding: 24px;
  }

  .upload-box {
    padding: 40px 24px;
  }

  .cv-benefits li {
    font-size: 0.95rem;
  }

  /* Admin Mobile Styles */
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .admin-tabs {
    flex-wrap: wrap;
    border-bottom: none;
  }

  .tab-btn {
    flex: 1;
    min-width: 120px;
  }

  .job-management-header {
    flex-direction: column;
    align-items: stretch;
  }

  .job-controls {
    flex-direction: column;
  }

  .job-title-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .job-actions {
    margin-top: 12px;
  }

  .modal-content {
    width: 95%;
    margin: 10% auto;
  }

  .modal-header {
    padding: 20px;
  }

  .settings-grid {
    grid-template-columns: 1fr;
  }

  .application-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .application-actions {
    flex-direction: column;
  }
}

.form-actions {
  flex-direction: column;
}

.admin-form {
  padding: 24px;
}

.admin-job-header {
  flex-direction: column;
  gap: 12px;
}

.admin-job-meta {
  flex-direction: column;
  gap: 8px;
}

/* Role Types Section */
.role-types {
  padding: 80px 20px;
  background: #ffffff;
}

.role-types h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.role-types-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.role-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  font-size: 1.2rem;
  line-height: 2;
}

.role-list li {
  color: #1a1a1a;
  font-weight: 500;
  margin-bottom: 12px;
}

.role-types p {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Personal Touch Section */
.personal-touch {
  padding: 80px 20px;
  background: #2d5a5a;
  color: #ffffff;
  text-align: center;
}

.personal-touch h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.why-choose-us h2 {
  font-size: 2.5rem;
  color: #1c7c7c;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
}

/* Duplicate benefits-grid removed - using the responsive version above */

.benefit-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #f0f0f0;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  border-color: #000000;
}

.benefit-item p {
  font-size: 1.1rem;
  color: #1a1a1a;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* Active Curious Section */
.active-curious {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  color: white;
}

.active-curious h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

/* What's Next Section */
.whats-next {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.whats-next h2 {
  font-size: 2.5rem;
  color: #1c7c7c;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
}

/* 50/50 Split Layout */
.content-split {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.image-column,
.text-column {
  flex: 1;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile Layout */
@media (max-width: 768px) {
  .content-split {
    flex-direction: column;
    gap: 2rem;
  }

  .image-column {
    order: -1;
  }
}

/* Error Message Styles */
.error-message {
  background-color: #fee;
  border: 1px solid #fcc;
  color: #c33;
  padding: 0.75rem;
  border-radius: 4px;
  margin-top: 0.5rem;
}

.required-note {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-style: italic;
}


 h4.heading {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin: 0;
  font-weight: 600;
}