.jobs-container {
  min-height: calc(100vh - 80px);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding-top: 80px;
}

/* About Us Section */
.about-us-section {
  background: rgba(30, 41, 59, 0.5);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(10px);
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.about-us-section h1 {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-align: center;
}

.about-text {
  color: #e2e8f0;
  line-height: 1.8;
  font-size: 1.1rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: #60a5fa;
  font-weight: 600;
}

.work-info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.work-info p {
  margin-bottom: 0.5rem;
  color: #f1f5f9;
  font-weight: 500;
}

.work-info p:last-child {
  margin-bottom: 0;
}

/* Jobs Hero */
.jobs-hero {
  text-align: center;
  padding: 60px 20px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.jobs-hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.jobs-hero p {
  font-size: 1.25rem;
  color: #94a3b8;
  font-weight: 400;
}

/* Job Cards */
.jobs-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  gap: 2rem;
}

.job-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: 0;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.job-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.job-header {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.job-title-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.job-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0;
}

.job-type {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.job-summary {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.job-summary p {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.job-content {
  padding: 2rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.expand-btn {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.expand-btn:hover {
  background: rgba(59, 130, 246, 0.3);
  transform: translateY(-1px);
}

.expand-icon {
  transition: transform 0.3s ease;
}

.job-card.expanded .expand-icon {
  transform: rotate(180deg);
}


.job-section {
  margin-bottom: 2rem;
}

.job-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  padding-bottom: 0.5rem;
}

.job-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-section li {
  color: #e2e8f0;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.job-section li::before {
  content: "→";
  color: #60a5fa;
  font-weight: 600;
  position: absolute;
  left: 0;
}

/* Application Section - Global */
.application-section-global {
  background: rgba(15, 23, 42, 0.8);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  padding: 60px 20px;
}

/* Application Section - Within job cards */
.job-content .application-section {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.application-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.job-content .application-header {
  margin: 0 0 1.5rem;
}

.application-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.job-content .application-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 0.5rem;
}

.job-content .application-header p {
  color: #94a3b8;
  font-size: 0.875rem;
}

.application-header p {
  font-size: 1.25rem;
  color: #94a3b8;
}

/* Job Application Form */
.job-application-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  max-width: 800px;
  margin: 0 auto;
}

.job-form {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.jobs-container .form-group label {
  font-weight: 600;
  color: #ffffff !important;
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: normal;
}

.form-input,
.form-textarea,
.form-select,
.form-file {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #f8fafc;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94a3b8;
  opacity: 1;
}

.form-input::-webkit-input-placeholder,
.form-textarea::-webkit-input-placeholder {
  color: #94a3b8;
  opacity: 1;
}

.form-input::-moz-placeholder,
.form-textarea::-moz-placeholder {
  color: #94a3b8;
  opacity: 1;
}

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

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-file {
  padding: 0.5rem;
}

.file-hint {
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0;
}

.submit-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.form-status {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 500;
  text-align: center;
}

.form-status.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content {
    padding: 40px 20px;
  }
  
  .about-us-section h1 {
    font-size: 2.5rem;
  }
  
  .jobs-hero h2 {
    font-size: 2rem;
  }
  
  .job-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .job-title-section {
    width: 100%;
    justify-content: space-between;
  }
  
  .expand-btn {
    align-self: stretch;
    justify-content: center;
  }
  
  .job-content {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .job-application-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-us-section h1 {
    font-size: 2rem;
  }
  
  .about-text {
    font-size: 1rem;
  }
  
  .jobs-hero h2 {
    font-size: 1.75rem;
  }
  
  .job-title {
    font-size: 1.25rem;
  }
  
  .job-content {
    padding: 1rem;
  }
  
  .application-header h2 {
    font-size: 2rem;
  }
}