/* ============================================
   NAVBAR - Figma Design Implementation
   ============================================ */

/* Navbar Container */
.navbar {
  /* 배경 투명 */
  background-color: transparent;
  
  /* 패딩 */
  padding: 0 0;
  
  /* 위치 */
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  
  /* 드롭다운이 잘리지 않도록 */
  overflow: visible;
}

.navbar-container {
  overflow: visible !important;
}

/* Navbar Wrapper - Figma: rounded-[30px] px-[60px] py-[9px] gap-[10px] */
.navbar-wrapper {
  /* Flexbox 레이아웃 - 양쪽 정렬 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  
  /* 패딩 - Figma: px-[60px] py-[9px] */
  padding: 9px 60px;
  
  /* 전체 너비 */
  width: 100%;
  max-width: 100%;

  height: 80px;
  
  /* 드롭다운이 잘리지 않도록 */
  overflow: visible !important;
}

/* Navbar Brand/Logo */
.navbar-brand {
  /* Flexbox */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  
  /* 너비 */
  width: auto;
  flex-shrink: 0;
}

.navbar-logo-wrapper {
  /* Flexbox - Figma: gap-[10.902px] */
  display: flex;
  align-items: center;
  gap: 10.902px;
  
  /* 높이 - Figma: h-[20px] */
  height: 20px;
}

.navbar-brand-logo {
  /* 높이 */
  height: 100%;
  width: 179px;
  
  /* 이미지 최적화 */
  object-fit: contain;
}

/* Navigation Menu */
.nav-menu-wrapper {
  /* Flexbox */
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Flex grow - Figma: basis-0 grow */
  flex: 1 1 0;
  min-width: 0;
}

.nav-menu-links {
  /* Flexbox - Figma: gap-[33px] */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
  
  /* 텍스트 스타일 */
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}

/* Navigation Links */
.nav-link-text {
  /* 기본 스타일 - Figma: font-['Inter_24pt:Regular',sans-serif] */
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  
  /* 색상 - Figma: text-[color:var(--neutral\/grey1,#dbdbdb)] */
  color: #dbdbdb;
  
  /* 텍스트 */
  text-decoration: none;
  white-space: nowrap;
  
  /* 전환 효과 */
  transition: color 0.3s ease;
}

.nav-link-text:hover {
  /* 호버 색상 */
  color: #ffffff;
}

/* Active Navigation Link - Home */
.nav-link-text.nav-link-active,
.nav-link-text.w--current {
  /* 활성 링크 스타일 - Figma: font-['Inter_24pt:Bold',sans-serif] */
  font-weight: 700;
  
  /* 색상 - Figma: text-[color:var(--neutral\/white,#ffffff)] */
  color: #ffffff;
}

/* Nav Button Wrapper */
.nav-button-wrapper {
  /* Flexbox - Figma: gap-[40px] */
  display: flex;
  align-items: center;
  gap: 40px;
  
  /* Flex shrink */
  flex-shrink: 0;
  
  /* 드롭다운이 잘리지 않도록 */
  overflow: visible !important;
}

/* Language Selector */
.language-selector-wrapper {
  position: relative;
}

.language-selector {
  /* Flexbox - Figma: gap-[8px] */
  display: flex;
  align-items: center;
  gap: 8px;
  
  /* 커서 */
  cursor: pointer;
  
  /* 전환 효과 */
  transition: opacity 0.3s ease;
}

.language-selector:hover {
  /* 호버 효과 */
  opacity: 0.8;
}

.language-selector.active .language-arrow-icon {
  transform: rotate(180deg);
}

.language-text {
  /* 텍스트 스타일 - Figma: font-['Inter_24pt:Regular',sans-serif] text-[16px] */
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  
  /* 색상 - Figma: text-[color:var(--neutral\/white,#ffffff)] */
  color: #ffffff;
    
  /* 텍스트 정렬 */
  text-align: center;
}
  
.language-arrow {
  /* 크기 - Figma: h-[18px] w-[19.459px] */
  height: 18px;
  width: 19.459px;
  
  /* 디스플레이 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.language-arrow-icon {
  /* 크기 */
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  background-color: #0e1023;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 85px;
  display: none;
  z-index: 1001;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.language-dropdown.show {
  display: block;
}

.language-dropdown-item {
  padding: 4px 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.language-dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.language-dropdown-item.active {
  background-color: rgba(71, 92, 253, 0.1);
}

.language-dropdown-text {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  text-align: left;
}

/* Nav Button - Contract */
.nav-button.menu {
  /* Flexbox - Figma: gap-[10px] h-[48px] */
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  
  /* 패딩 - Figma: px-[20px] py-[12px] */
  padding: 12px 20px;
  
  /* 배경 그라디언트 - Figma: radial gradient */
  background-image: radial-gradient(70.66% 70.66% at 50.29% 100%, #9EA9FF 0%, #475CFD 100%);
  
  /* 테두리 반경 - Figma: rounded-[12px] */
  border-radius: 12px;
  
  /* 테두리 */
  border: none;
    
    /* 전환 효과 */
  transition: all 0.3s ease;
  
  /* 텍스트 정렬 */
  text-align: center;
  }
  
.nav-button.menu:hover {
    /* 호버 효과 */
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(71, 92, 253, 0.4);
}

.nav-button.menu .preview-hero-button-text {
  /* 버튼 텍스트 스타일 - Figma: font-['Inter_24pt:Medium',sans-serif] text-[16px] */
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  
  /* 색상 - Figma: text-[color:var(--neutral\/white,#ffffff)] */
  color: #ffffff;
  
  /* 텍스트 */
  text-align: center;
  white-space: nowrap;
}

.nav-button.menu .primary-button-arrow {
  /* 크기 - Figma: size-[20px] */
  width: 20px;
  height: 20px;
}

/* Menu Button (Hamburger) - 기본적으로 숨김 */
.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
}

.menu-button .menu-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
  
  /* 반응형 디자인 */
  @media screen and (max-width: 991px) {
  .navbar-wrapper {
    /* 태블릿 패딩 - Figma 디자인에 맞게 */
    padding: 9px 60px;
  }
  
  /* 태블릿에서 nav-menu-wrapper 오버레이 스타일 */
  .nav-menu-wrapper {
    background-color: #0e1023;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    gap: 33px;
    width: 100%;
    padding: 20px;
    display: none;
    z-index: 999;
  }
  
  .nav-menu-wrapper[data-nav-menu-open] {
    display: block;
  }
  
  .nav-menu-links {
    /* 태블릿에서 세로 배치, 가운데 정렬 */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 33px; 
    width: 100%;
    max-width: 100%;
  }
  
  .nav-link-text {
    /* 태블릿 링크 스타일 - 가운데 정렬 */
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #dbdbdb;
    width: 100%;
    text-align: center;
    border-bottom: none;
  }
  
  .nav-link-text:hover {
    color: #ffffff;
  }
  
  .nav-link-text.nav-link-active,
  .nav-link-text.w--current {
    color: #ffffff;
    font-weight: 700;
  }
  
  .nav-button-wrapper {
    /* 태블릿 gap */
    gap: 40px;
  }
  
  .language-selector {
    /* 태블릿 언어 선택자 */
    gap: 6px;
  }
  
  .language-text {
    /* 태블릿 언어 텍스트 */
    font-size: 14px;
  }
  
  /* 태블릿에서 Contact 버튼 숨김 */
  .nav-button.menu {
    display: none;
  }
  
  /* 태블릿에서 메뉴 버튼 표시 */
  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
  }
  
  .menu-button .menu-icon {
    width: 24px;
    height: 24px;
  }
}

@media screen and (max-width: 767px) {
  .navbar-wrapper {
    /* 모바일 패딩 */
    padding: 9px 20px;
  }
  
  .nav-menu-links {
    /* 모바일에서 숨김 */
    display: none;
  }
  
  /* 메뉴가 열렸을 때 nav-menu-links 표시 */
  .nav-menu-wrapper[data-nav-menu-open] .nav-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 33px;
    width: 100%;
    max-width: 100%;
  }
  
  .nav-button-wrapper {
    /* 모바일 gap */
    gap: 20px;
  }
  
  .language-selector {
    /* 모바일에서 숨김 또는 표시 */
    display: flex;
  }
  
  .nav-button.menu {
    /* 모바일 패딩 */
    padding: 10px 16px;
    height: 44px;
  }
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.footer {
  background: #0b0c1b;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 597" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><rect x="0" y="0" height="100%" width="100%" fill="url(%23grad)" opacity="0.2"/><defs><radialGradient id="grad" gradientUnits="userSpaceOnUse" cx="0" cy="0" r="10" gradientTransform="matrix(64.05 -54.02 130.3 191.66 295 540.2)"><stop stop-color="rgba(28,44,123,1)" offset="0"/><stop stop-color="rgba(21,33,92,1)" offset="0.25"/><stop stop-color="rgba(14,22,62,1)" offset="0.5"/><stop stop-color="rgba(7,11,31,1)" offset="0.75"/><stop stop-color="rgba(4,6,15,1)" offset="0.875"/><stop stop-color="rgba(0,0,0,1)" offset="1"/></radialGradient></defs></svg>');
  padding: 40px 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 597px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.footer-container {
  max-width: 1440px;
  padding: 0 40px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* 왼쪽 영역: 어두운 배경 */
.footer-left-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 517px;
  min-width: 0;
}

.footer-left-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.footer-left-text-line1,
.footer-left-text-line2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 31px;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
  padding: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  max-width: 100%;
}

.footer-logo-wrapper {
  display: flex;
  gap: 49.602px;
  align-items: center;
  margin-top: auto;
  opacity: 0.2;
  position: relative;
  z-index: 1;
}

.footer-logo-part1 {
  width: 432.858px;
  height: 90.18px;
  object-fit: contain;
}

.footer-logo-part2 {
  width: 333.242px;
  height: 91px;
  object-fit: contain;
}

/* 오른쪽 영역: 흰색 폼 */
.footer-right-section {
  flex: 0 0 auto;
  width: 620px;
  max-width: 620px;
  min-width: 440px;
  height: 517px;
  background: #ffffff;
  border-radius: 10px;
  padding: 32px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

.footer-form-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-form-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.footer-form-title-wrapper {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}

.footer-forum-icon {
  width: 39px;
  height: 39px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-form-title {
  font-family: 'SUITE Variable', sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.3;
  color: #121212;
  margin: 0;
  padding: 0;
}

.footer-form-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.footer-form-input {
  width: 100%;
  background: #f4f6ff;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-family: 'SUITE Variable', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #626464;
  letter-spacing: -0.16px;
  box-sizing: border-box;
}

.footer-form-input::placeholder {
  color: #626464;
}

.footer-form-input:focus {
  outline: none;
  background: #e8e8e8;
  color: #121212;
}

.footer-checkbox-wrapper {
  display: flex;
  gap: 4px;
  align-items: center;
  width: 100%;
}

.footer-checkbox {
  width: 17px;
  height: 17px;
  margin-top: 1.5px;
  margin-bottom: 1.5px;
  margin-right: 1.5px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #f4f4f4;
  border: none;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
}

.footer-checkbox:checked {
  background: #253db4;
}

.footer-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.1667 4.25L6.375 12.0417L2.83334 8.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-checkbox:not(:checked)::before {
  display: none;
}

.footer-checkbox-label {
  font-family: 'SUITE Variable', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #474747;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.footer-submit-button {
  background: #253db4;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  height: 40px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  flex-shrink: 0;
  align-self: flex-end;
  margin-left: auto;
}

.footer-submit-button:hover {
  background: #1d2f91;
}

.footer-submit-text {
  font-family: 'SUITE Variable', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: -0.16px;
  white-space: nowrap;
}

.footer-submit-icon-wrapper {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-submit-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-form-block .success-message,
.footer-form-block .error-message {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
}

.footer-form-block .success-message {
  background: #d4edda;
  color: #155724;
}

.footer-form-block .error-message {
  background: #f8d7da;
  color: #721c24;
}

/* Company Info Section */
.company-info-section {
  background: #0b0c1b;
  padding: 100px;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}

.company-info-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
  align-items: flex-start;
}

.company-logo-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.company-logo {
  width: 300px;
  height: 33.5px;
  object-fit: contain;
}

.company-contact-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.company-contact-email {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.company-divider-line {
  width: 0;
  height: 13px;
  flex-shrink: 0;
  position: relative;
}

.company-divider-line::before {
  content: '';
  position: absolute;
  left: -0.5px;
  right: -0.5px;
  top: 0;
  bottom: 0;
  border-left: 1px solid #dbdbdb;
}

.company-linkedin-wrapper {
  display: flex;
  gap: 4px;
  align-items: center;
}

.company-linkedin-link p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  text-decoration: underline;
  text-underline-position: from-font;
  cursor: pointer;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  display: inline;
}

.company-linkedin-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  padding: 2px;
  margin-left: 2px;
}

.company-details-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.company-details-left {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  width: 484px;
  max-width: 100%;
}

.company-name-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.company-info-row {
  display: flex;
  gap: 9px;
  align-items: center;
  width: 100%;
}

.company-name,
.company-ceo,
.company-address,
.company-phone,
.company-business,
.company-registration {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.company-address {
  width: 100%;
  white-space: nowrap;
}

.company-legal-links {
  display: flex;
  gap: 9px;
  align-items: center;
  width: 100%;
}

.company-legal-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  text-decoration: underline;
  text-underline-position: from-font;
  cursor: pointer;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.company-divider-vector {
  width: 0;
  height: 13px;
  flex-shrink: 0;
  position: relative;
}

.company-divider-vector::before {
  content: '';
  position: absolute;
  left: -0.5px;
  right: -0.5px;
  top: 0;
  bottom: 0;
  border-left: 1px solid #dbdbdb;
}

.company-copyright {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

/* Responsive Styles for Footer */
@media screen and (max-width: 1400px) {
  .footer {
    flex-wrap: wrap;
  }
  
  .footer-left-section {
    flex: 1 1 auto;
    min-width: 300px;
  }
  
  .footer-right-section {
    min-width: 440px;
    max-width: 620px;
  }
  
  .footer-left-text-line1,
  .footer-left-text-line2 {
    font-size: clamp(24px, 3vw, 31px);
  }
}

@media screen and (max-width: 991px) {
  .footer {
    padding: 40px 0;
    flex-direction: column;
  }
  
  .footer-container {
    padding: 0 40px;
    gap: 40px;
    flex-direction: column;
    min-height: auto;
    align-items: center;
    justify-content: center;
  }
  
  .footer-left-section {
    width: 100%;
    height: auto;
    min-height: 0;
    align-items: center;
    justify-content: center;
  }
  
  .footer-left-text {
    align-items: center;
    text-align: center;
  }
  
  .footer-right-section {
    width: 100%;
    max-width: 620px;
    height: auto;
  }
  
  .footer-left-text-line1,
  .footer-left-text-line2 {
    font-size: 31px;
    text-align: center;
  }

  .footer-logo-wrapper {
    display: none;
  }
  
  .footer + .company-info-section {
    margin-top: 170px;
  }
  
  .company-info-section {
    padding: 60px 40px;
    margin-top: 0;
  }
  
  .company-info-container {
    gap: 44px;
    padding: 0;
  }
  
  .company-logo {
    width: 300px;
    height: auto;
  }
  
  .company-contact-email,
  .company-linkedin-link,
  .company-name,
  .company-ceo,
  .company-address,
  .company-business,
  .company-registration,
  .company-legal-link {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
  }
  
  .company-copyright {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
  }
  
  .company-details-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 44px;
  }
  
  .company-details-left {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    min-height: 0;
    padding: 40px 20px;
  }
  
  .footer-container {
    gap: 40px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .footer-forum-icon {
    width: 23px;
    height: 23px;
  }
  
  .footer-left-section {
    min-height: 0;
  }
  
  .footer-right-section {
    padding: 32px 20px;
    min-width: 100%;
    max-width: 100%;
  }
  
  .footer-left-text-line1,
  .footer-left-text-line2 {
    font-size: 20px;
  }
  
  .footer-logo-wrapper {
    gap: 30px;
  }
  
  .footer-logo-part1 {
    width: 200px;
    height: auto;
  }
  
  .footer-logo-part2 {
    width: 154px;
    height: auto;
  }
  
  .footer-form-title {
    font-size: 18px;
  }
  
  .footer-form-input {
    padding: 14px 20px;
    font-size: 16px;
  }
  
  .footer-checkbox-label {
    font-size: 16px;
  }
  
  .footer-submit-button {
    height: 40px;
    padding: 10px 20px;
  }
  
  .footer-submit-text {
    font-size: 16px;
  }

  .footer + .company-info-section {
    margin-top: 0px;
  }
  
  .company-info-section {
    padding: 60px 40px;
  }
  
  .company-logo {
    width: 300px;
    height: auto;
  }
  
  .company-contact-wrapper {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .company-contact-email {
    font-size: 14px;
  }
  
  .company-linkedin-link {
    font-size: 14px;
  }
  
  .company-details-left {
    gap: 9px;
    width: 100%;
  }
  
  .company-name-row,
  .company-info-row,
  .company-legal-links {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .company-name,
  .company-ceo,
  .company-address,
  .company-business,
  .company-registration {
    font-size: 14px;
  }
  
  .company-legal-link {
    font-size: 14px;
  }
  
  .company-address {
    white-space: normal;
  }
  
  .company-copyright {
    font-size: 14px;
    margin: 0;
  }
}

