/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── ANIMATIONS ── */
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes slide-left {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0);     }
}

@keyframes slide-right {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0);    }
}

@keyframes zoom-in {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1);    }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

@keyframes subtle-zoom {
  from { transform: scale(1.00); }
  to   { transform: scale(1.06); }
}

/* Utility classes for animations */
.animate-fade-in {
  opacity: 0;
  animation: fade-in 0.6s ease forwards;
}

.animate-fade-up {
  opacity: 0;
  animation: fade-up 0.6s ease forwards;
}

.animate-slide-up {
  opacity: 0;
  animation: slide-up 0.6s ease forwards;
}

.animate-slide-left {
  opacity: 0;
  animation: slide-left 0.6s ease forwards;
}

.animate-slide-right {
  opacity: 0;
  animation: slide-right 0.6s ease forwards;
}

.animate-zoom-in {
  opacity: 0;
  animation: zoom-in 0.6s ease forwards;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Delay utilities */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }
.delay-900 { animation-delay: 0.9s; }
.delay-1000 { animation-delay: 1s; }

:root {
  --clr-bg:        #080808;
  --clr-nav:       rgba(0,0,0,0.72);
  --clr-accent:    #ffffff;          /* vivid orange                 */
  --clr-accent2:   #cccccc;          /* deep burnt-orange            */
  --clr-btn-dark:  rgba(0,0,0,0.85);
  --clr-btn-dark-border: rgba(255,255,255,0.35);
  --clr-text:      #ffffff;
  --clr-muted:     rgba(255,255,255,0.65);

  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'Barlow', sans-serif;
  --font-condensed:'Barlow Condensed', sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: var(--clr-nav);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo .logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 8px;
}


.nav-title {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--clr-text);
  user-select: none;
}

/* Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

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

/* CTA button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.55);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: rgba(0, 0, 0, 0.92);
  border-color: #fff;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image — references your local Homepage.png */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('Homepage.jpg') center center / cover no-repeat;
  transform: scale(1.03);
  animation: subtle-zoom 18s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
  from { transform: scale(1.00); }
  to   { transform: scale(1.06); }
}

/* Dark gradient overlay — amber/crimson tint instead of blue */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.72) 45%,
      rgba(0,0,0,0.45) 100%
    );
}

/* Subtle vignette */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, transparent 30%, rgba(0,0,0,0.55) 100%);
}

/* Content sits above overlays */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 80px 80px;
  max-width: 820px;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* Heading */
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 8vw, 7.2rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}

/* Subtitle */
.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--clr-muted);
  letter-spacing: 0.01em;
  margin-bottom: 36px;
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--clr-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  cursor: pointer;
}

/* Dark / glass button — black fill, white border */
.btn-dark {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
}

.btn-dark:hover {
  background: rgba(0, 0, 0, 0.90);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* Accent button — black fill, white border */
.btn-accent {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
}

.btn-accent:hover {
  background: rgba(0, 0, 0, 0.90);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}


/* ── ABOUT SECTION ── */
.about {
  position: relative;
  background: #000;
  padding: 100px 80px;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Intro block */
.about-intro {
  margin-bottom: 64px;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.about-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: #fff;
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.about-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 520px;
}

/* Main grid: feature card full-width, then 3-col mini cards */
.about-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

/* Feature card spans all 3 columns */
.about-feature-card {
  grid-column: 1 / -1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 44px 40px;
}

/* Left col wrapper no longer needed */
.about-left-col {
  display: contents;
}

.feature-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.feature-heading {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}

.feature-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 32px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

/* Right mini cards column — no longer needed as wrapper */
.about-mini-cards {
  display: contents;
}

.mini-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 30px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.mini-card:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

.mini-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}

.mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
}

.mini-title {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}

.mini-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ── EXPERIENCES SECTION ── */
.experiences {
  position: relative;
  background: var(--clr-bg);
  padding: 100px 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.experiences-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.experiences-intro {
  margin-bottom: 60px;
}

.experiences-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  gap: 20px;
}

.coming-soon-icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.coming-soon-title {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #fff;
  letter-spacing: 0.01em;
}

.coming-soon-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 480px;
}

@media (max-width: 768px) {
  .experiences {
    padding: 70px 24px;
  }
  .experiences-coming-soon {
    padding: 56px 24px;
  }
}

/* ── CONTACT SECTION ── */
.contact {
  position: relative;
  background: #000;
  padding: 100px 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT */
.contact-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.contact-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  color: #fff;
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.contact-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 400px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

.form-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-input:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-select option {
  background: #111;
  color: #fff;
}

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

.form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: #fff;
  color: #000;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.form-submit:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-1px);
}

.form-note {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-feature-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 70px 24px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .hero-content {
    padding: 100px 24px 60px;
  }
  .hero-stats {
    gap: 28px;
  }
}
@media (max-width: 900px) {
  .contact {
    padding: 70px 24px;
  }
}
/* ── CAREERS SECTION ── */
.careers {
  position: relative;
  background: var(--clr-bg);
  padding: 100px 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.careers-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.careers-intro {
  margin-bottom: 60px;
}

.careers-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.career-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.career-card:hover {
  border-color: rgba(255,255,255,0.22);
}

.career-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 36px;
  cursor: pointer;
  gap: 24px;
}

.career-card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.career-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 3px 12px;
  width: fit-content;
}

.career-title {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: #fff;
  letter-spacing: 0.01em;
}

.career-lang {
  color: rgba(255,255,255,0.45);
  font-size: 0.85em;
}

.career-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 560px;
}

.career-chevron {
  flex-shrink: 0;
  color: rgba(255,255,255,0.4);
  transition: transform 0.3s ease, color 0.2s;
}

.career-chevron.rotated {
  transform: rotate(180deg);
  color: #fff;
}

/* Accordion body */
.career-form-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.career-form-wrap.open {
  max-height: 1200px;
}

.career-form {
  padding: 0 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}

.form-optional {
  font-weight: 400;
  font-size: 0.85em;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0;
  text-transform: none;
}

/* File drop zone */
.file-drop-zone {
  background: rgba(255,255,255,0.03);
  border: 1.5px dashed rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 28px 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.file-drop-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: none;
}

.file-drop-zone:hover,
.file-drop-zone.drag-over {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
}

.file-drop-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-align: center;
  pointer-events: none;
}

.file-drop-hint {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 8px 12px;
}

.file-item-name {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-item-size {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.file-item-remove {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 2px 4px;
  flex-shrink: 0;
  transition: color 0.15s;
}

.file-item-remove:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .careers {
    padding: 70px 24px;
  }
  .career-card-header {
    padding: 24px 20px;
  }
  .career-form {
    padding: 20px 20px 28px;
  }
}