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

html {
  height: 100%;
  width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
}

/* Header */
.header {
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(0, 102, 255, 0.2);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.1),
              0 0 20px rgba(123, 104, 238, 0.05) inset;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0066ff;
  text-shadow: none;
  max-width: 1200px;
  margin: 0 auto;
}

.logo svg {
  color: #0066ff;
  filter: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 3rem 2rem;
  min-height: auto;
  position: relative;
  border-bottom: 1px solid rgba(0, 102, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.08);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(123, 104, 238, 0.08) 0%, transparent 50%);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-left {
  padding-top: 1rem;
  order: 1;
}

.hero-right {
  order: 2;
}

.hero-left h1 {
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0066ff 0%, #7b68ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.3))
          drop-shadow(0 0 40px rgba(123, 104, 238, 0.2));
  animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% { 
    filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.3))
            drop-shadow(0 0 40px rgba(123, 104, 238, 0.2));
  }
  50% { 
    filter: drop-shadow(0 0 30px rgba(0, 102, 255, 0.5))
            drop-shadow(0 0 60px rgba(123, 104, 238, 0.3));
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #666666;
}

.btn-discover {
  padding: 0.75rem 2rem;
  border: 2px solid #0066ff;
  background: rgba(0, 102, 255, 0.05);
  color: #0066ff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2),
              0 0 20px rgba(0, 102, 255, 0.1);
}

.btn-discover:hover {
  background: rgba(0, 102, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4),
              0 0 40px rgba(123, 104, 238, 0.3);
  border-color: #7b68ee;
}

.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.hero-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.75);
  padding: 2rem;
  border-radius: 0 0 8px 8px;
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-top: none;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.15) inset,
              0 0 30px rgba(123, 104, 238, 0.1);
}

.hero-cta h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 400;
  text-shadow: none;
}

.btn-apply {
  padding: 0.75rem 2.5rem;
  background: linear-gradient(135deg, #0066ff 0%, #7b68ee 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

.btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
}

/* Mission Section */
.mission {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(123, 104, 238, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

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

.mission h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3.5rem;
  max-width: 800px;
  line-height: 1.2;
}

.mission-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  font-size: 1.125rem;
  line-height: 1.9;
  color: #333333;
}

.mission-text p {
  background: rgba(255, 255, 255, 0.6);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #0066ff;
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.1),
              0 0 20px rgba(0, 102, 255, 0.05) inset;
  transition: all 0.3s ease;
}

.mission-text p:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.2),
              0 0 40px rgba(123, 104, 238, 0.15);
  border-left-color: #7b68ee;
  border-left-width: 6px;
}

/* Team Section */
.team {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.team h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-member {
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 102, 255, 0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.08);
}

.team-member:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 102, 255, 0.4);
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.2),
              0 0 40px rgba(123, 104, 238, 0.15);
}

.team-photo-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  cursor: pointer;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease, transform 0.3s ease;
}

.team-photo-normal {
  opacity: 1;
  z-index: 2;
}

.team-photo-superhero {
  opacity: 0;
  z-index: 1;
}

.team-photo-container:hover .team-photo-normal {
  opacity: 0;
}

.team-photo-container:hover .team-photo-superhero {
  opacity: 1;
  transform: scale(1.05);
}

.team-name {
  font-size: 1rem;
  color: #1a1a1a;
  background: rgba(0, 102, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

/* Companies Section */
.companies {
  padding: 5rem 2rem;
  background: #ffffff;
  border-bottom: 2px solid rgba(138, 43, 226, 0.2);
}

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

h2 {
  background: linear-gradient(135deg, #0066ff 0%, #7b68ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.companies h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  align-items: center;
}

.company-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 150px;
  cursor: pointer;
}

.company-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.company-logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.company-logo[data-company="fashionlabs"] img {
  width: 100px;
  height: 100px;
}

/* Company Modal Styles */
.company-modal-content {
  max-width: 700px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.company-modal-header {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(0, 102, 255, 0.1);
}

.company-modal-icon {
  font-size: 3.5rem;
  line-height: 1;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(123, 104, 238, 0.1) 100%);
  padding: 1rem;
  border-radius: 16px;
  border: 2px solid rgba(0, 102, 255, 0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-modal-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.company-modal-header h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.company-subhead {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.company-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.company-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  border-left: 3px solid #0066ff;
  transition: all 0.3s ease;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}

.company-benefits li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.08);
  border-left-color: #7b68ee;
}

.benefit-icon {
  color: #0066ff;
  font-weight: bold;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.btn-company-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #0066ff 0%, #7b68ee 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
  text-align: center;
}

.btn-company-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
}

/* Newsletter Section */
.newsletter {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.newsletter-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.newsletter h3 {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.4;
  color: #1a1a1a;
  text-shadow: none;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-size: 0.875rem;
  color: #666666;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(0, 102, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(102, 102, 102, 0.5);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #0066ff;
}

.checkbox-group label {
  font-size: 0.875rem;
  cursor: pointer;
  color: #666666;
}

.btn-subscribe {
  padding: 0.875rem 2.5rem;
  background: linear-gradient(135deg, #0066ff 0%, #7b68ee 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

.btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  background: #ffffff;
  color: #666666;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
}

.footer-right {
  text-align: right;
  line-height: 1.8;
  font-size: 0.875rem;
}

.copyright {
  margin-top: 1rem;
  opacity: 0.6;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: rgba(255, 255, 255, 0.85);
  margin: 3% auto;
  padding: 2.5rem;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  border: 1px solid rgba(0, 102, 255, 0.2);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2),
              0 0 60px rgba(123, 104, 238, 0.1) inset;
  animation: slideDown 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  color: #666666;
  float: right;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover,
.modal-close:focus {
  color: #0066ff;
  text-shadow: none;
}

.modal-content h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #0066ff 0%, #7b68ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  clear: both;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.apply-form .form-group label {
  font-size: 0.875rem;
  color: #666666;
  font-weight: 500;
}

.apply-form .form-group input,
.apply-form .form-group textarea {
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.apply-form .form-group input:focus,
.apply-form .form-group textarea:focus {
  outline: none;
  border-color: rgba(0, 102, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.apply-form .form-group input::placeholder,
.apply-form .form-group textarea::placeholder {
  color: rgba(102, 102, 102, 0.5);
}

.btn-submit {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #0066ff 0%, #7b68ee 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 2rem;
  }

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

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

@media (max-width: 768px) {
  /* Header */
  .header {
    padding: 1rem 1.5rem;
  }

  .logo {
    font-size: 1rem;
  }

  /* Hero Section */
  .hero {
    padding: 2rem 1.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-left {
    padding-top: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-left h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    order: 1;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    order: 2;
  }

  .btn-discover {
    width: 100%;
    padding: 0.875rem 2rem;
    order: 5;
  }

  .hero-right {
    order: 3;
    position: static;
  }

  .hero-image {
    display: none;
  }

  .hero-cta {
    padding: 0;
    position: static;
    background: transparent;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
    margin-bottom: 1.5rem;
  }

  .hero-cta h3 {
    display: none;
  }

  .btn-apply {
    width: 100%;
    padding: 0.875rem 2rem;
  }

  /* Mission Section */
  .mission {
    padding: 3rem 1.5rem;
    order: 4;
  }

  .mission h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    line-height: 1.3;
  }

  .mission-text {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mission-text p {
    padding: 1.5rem;
  }

  /* Team Section */
  .team {
    padding: 3rem 1.5rem;
  }

  .team h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

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

  .team-member {
    padding: 1.5rem;
  }

  .team-photo-container {
    width: 150px;
    height: 150px;
  }

  .team-photo {
    width: 150px;
    height: 150px;
  }

  /* Companies Section */
  .companies {
    padding: 3rem 1.5rem;
  }

  .companies h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

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

  .company-logo {
    padding: 1rem;
    min-height: 120px;
  }

  .company-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
  }

  /* Newsletter Section */
  .newsletter {
    padding: 3rem 1.5rem;
  }

  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .newsletter h3 {
    font-size: 1.5rem;
  }

  .btn-subscribe {
    width: 100%;
  }

  /* Footer */
  .footer {
    padding: 2rem 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-right {
    text-align: left;
  }

  /* Modal */
  .modal-content {
    margin: 5% auto;
    padding: 2rem 1.5rem;
    width: 95%;
    max-height: 85vh;
  }

  .modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .company-modal-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .company-modal-icon {
    font-size: 3rem;
    margin: 0 auto;
  }

  .company-modal-header h2 {
    font-size: 1.5rem;
  }

  .company-benefits li {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }

  .btn-company-cta {
    width: 100%;
  }

  .btn-submit {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* Hero Section */
  .hero-left h1 {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.9375rem;
  }

  .hero-image {
    height: 250px;
  }

  /* Mission Section */
  .mission h2 {
    font-size: 1.5rem;
  }

  .mission-text p {
    padding: 1.25rem;
    font-size: 1rem;
  }

  /* Team Section */
  .team h2 {
    font-size: 1.5rem;
  }

  .team-photo-container {
    width: 120px;
    height: 120px;
  }

  .team-photo {
    width: 120px;
    height: 120px;
  }

  /* Companies Section */
  .companies h2 {
    font-size: 1.5rem;
  }

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

  .company-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
  }

  /* Newsletter Section */
  .newsletter h3 {
    font-size: 1.25rem;
  }

  /* Modal */
  .modal-content {
    padding: 1.5rem 1rem;
  }

  .company-modal-icon {
    font-size: 2.5rem;
  }

  .company-modal-header h2 {
    font-size: 1.25rem;
  }

  .company-benefits li {
    padding: 0.75rem;
    font-size: 0.875rem;
  }
}