/* CSS Variables - Figma Design Tokens */
:root {
  /* Colors */
  --gray-0: #0b0b0b;
  --gray-1: #f6f6f6;
  --gray-2: #ededed;
  --gray-5: #999999;
  --gray-6: #757575;
  --gray-7: #4d4d4d;
  --black: #000000;
  --white: #ffffff;
  --primary-orange: #f9a03f;

  /* Typography - Pretendard Font */
  --font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui,
    Roboto, sans-serif;

  /* H1_Bold */
  --h1-size: 54px;
  --h1-weight: 700;
  --h1-line-height: 1.3;

  /* H2_Bold */
  --h2-size: 60px;
  --h2-weight: 700;
  --h2-line-height: 1.3;

  /* H3_Bold */
  --h3-size: 36px;
  --h3-weight: 700;
  --h3-line-height: 1.3;

  /* H4_Bold */
  --h4-size: 32px;
  --h4-weight: 700;
  --h4-line-height: 1.3;

  /* H5_SemiBold */
  --h5-size: 28px;
  --h5-weight: 600;
  --h5-line-height: 1.3;

  /* Title1_Bold */
  --title1-size: 24px;
  --title1-weight: 700;
  --title1-line-height: 1.3;

  /* Title1_SemiBold */
  --title1-semibold-weight: 600;

  /* Title2_Regular */
  --title2-size: 20px;
  --title2-weight: 400;
  --title2-line-height: 1.4;

  /* Title2_SemiBold */
  --title2-semibold-weight: 600;

  /* Body2_Regular */
  --body2-size: 14px;
  --body2-weight: 400;
  --body2-line-height: 1.4;

  /* Button1 */
  --button1-size: 16px;
  --button1-weight: 600;
  --button1-line-height: 1.3;

  /* Button2 */
  --button2-size: 14px;
  --button2-weight: 600;
  --button2-line-height: 1.3;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--black);
  background-color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  word-break: keep-all;
}

.homepage {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background-color: var(--white);
  overflow-x: hidden;
  position: relative;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 200px;
  z-index: 1000;
}

.header-left {
  display: flex;
  align-items: center;
}

.header .logo {
  width: 160px;
  height: 48px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.header .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-center {
  position: static;
  transform: none;
  margin-left: 45px;
}

.user-type-toggle {
  display: flex;
  background-color: var(--gray-2); /* #EDEDED */
  border-radius: 50px;
  padding: 4px;
  border: 1px solid #e0e0e0;
}

.toggle-btn {
  background-color: transparent;
  border: none;
  padding: 8px 24px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-6);
  cursor: pointer;
  border-radius: 50px;
  transition: background-color 0.3s, color 0.3s;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.toggle-btn.active {
  background-color: var(--white);
  color: var(--gray-0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  background-color: var(--gray-0);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  font-family: var(--font-family);
  font-size: var(--button1-size);
  font-weight: var(--button1-weight);
  line-height: var(--button1-line-height);
  cursor: pointer;
  height: 44px;
  transition: opacity 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-actions .signup {
  background-color: var(--gray-2);
  color: var(--black);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-lang {
  background-color: var(--gray-2);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--font-family);
  padding: 0;
  transition: background-color 0.3s;
  position: relative;
}

.btn-lang:hover {
  background-color: var(--gray-1);
}

.btn-lang img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Language Dropdown */
.language-dropdown {
  position: absolute;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 8px;
  min-width: 200px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1001;
  margin-top: 8px;
}

.language-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.language-item:hover {
  background-color: var(--gray-1);
}

.language-item img {
  width: 28px;
  height: 21px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.language-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-0);
}

/* Hide Google Translate Elements */
.goog-te-banner-frame,
.goog-te-balloon-frame,
.skiptranslate iframe {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 1022px;
  width: 100%;
  overflow: hidden;
  background-color: #f5f9fa;
}

.hero-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-background img {
  position: absolute;
  width: 103.81%;
  height: 108.85%;
  left: -1.91%;
  top: 8.35%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 68.77%,
    white 100%
  );
}

.hero-content {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
  color: #0b0b0b;
  margin-top: 583px;
  text-align: center;
}

.hero-content h1 {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: var(--h1-line-height);
  margin: 0;
}

.hero-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.hero-description p {
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}
.hero-buttons a:first-child {
  background-color: var(--white);
  color: var(--gray-0);
}

/* Creators Section */
.help-section {
  background-color: var(--white);
  padding: 260px 0 254px 0;
  text-align: center;
}

.help-section h2 {
  color: var(--gray-0, #0b0b0b);
  text-align: center;
  font-family: Pretendard;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 85px;
}

.help-grid {
  display: flex;
  gap: 80px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
}
.help-grid div {
  flex: 0 1 auto;
  max-width: 280px;
}

.help-grid div h4 {
  color: var(--Black, #000);
  font-family: Pretendard;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-top: 36px;
}
.help-grid div p {
  margin-top: 5px;
  color: var(--Black, #000);
  font-family: Pretendard;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
.help-grid div h4 img {
  height: 25.494px;
  width: auto;
  min-height: auto;
  margin-left: 10px;
}

.help-grid div > img {
  width: 100%;
  height: auto;
  min-height: 150px;
  align-self: stretch;
  border-radius: 20px;
  object-fit: cover;
  border-radius: 0;
}

.section3,
.section9 {
  background: #000;
  padding: 200px 0;
  text-align: center;
  color: var(--White, #fff);
}
.section3 h2,
.section9 h2 {
  color: var(--White, #fff);
  text-align: center;
  /* H1_Bold */
  font-family: Pretendard;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 40px;
}
.section3 h3 {
  color: var(--White, #fff);
  text-align: center;
  font-family: Pretendard;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section4 {
  padding: 200px 238px;
}
.section4 .sub-section {
  height: auto;
  margin-bottom: 215px;
}
.section4 .sub-section .wrap_title h4 {
  padding: 0 17px;
  height: 78px;
  color: var(--White, #fff);
  border-radius: 12px;
  background-color: #0b0b0b;
  text-align: center;
  line-height: 76px;
  font-size: var(--h4-size);
  font-weight: var(--title2-semibold-weight);
}
.section4 .sub-section .wrap_title span {
  background-color: var(--White, #fff);
  color: #0b0b0b;
  border-radius: 6px;
  margin-right: 15px;
  height: 48px;
  width: 48px;
  padding: 5px;
}
.section4 .sub-section .wrap_title {
  width: 100%;
  display: flex;

  align-items: center;
}
.section4 .sub-section .wrap_title .line {
  height: 2px;
  flex: 1;

  background-color: #0b0b0b;
}
.section4 .sub-section h3 {
  margin: 80px 0;
  text-align: center;
  font-family: Pretendard;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
.section4 .sub-section a {
  width: 160px;
  height: 56px;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 60%;
  bottom: 20px;
  background-color: var(--white);
  color: var(--gray-0);
  border-radius: 10px;
  font-family: var(--font-family);
  font-size: var(--button1-size);
  font-weight: var(--button1-weight);
  line-height: var(--button1-line-height);
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section4 .sub-section .img_box1 {
  position: relative;
  width: 100%;
}
.section4 .sub-section .img_box2 {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.section4 .sub-section .img_box3 {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
.section4 .sub-section .img_box4 {
  display: flex;
  background: #343434;
  margin: 0 -238px;
  padding: 0 238px;
}
.section4 .sub-section .img_box1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.section4 .sub-section .img_box2 img {
  width: 48.5%;
  flex: 1;
  height: auto;
  object-fit: cover;
}

.section4 .sub-section .img_box3 div {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 48%;
}
.section4 .sub-section .img_box3 > img {
  width: 48%;
}
.section4 .sub-section .img_box4 img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}
.section4 .sub-section:last-child {
  margin-bottom: 0;
}
.section5 {
  margin-top: 150px;
  padding: 0 200px 200px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section5 > img:first-child {
  width: 100%;
  box-sizing: border-box;
}
.section5 > img:nth-child(2) {
  width: 100%;
  box-sizing: border-box;
}
.section5 img:nth-child(2) {
  width:100%;
  margin-top: 65px;
  height: auto;
}
.section5 div {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 340px;
  width: 100%;
}
.section5 div img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
}
.section5 h3 {
  width: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 20%;
  border-radius: 12px;
  text-align: center;
  font-size: var(--h4-size);
  font-weight: var(--title2-semibold-weight);
  padding: 0 200px;
  box-sizing: border-box;
}
.section6 {
  padding: 200px;
  margin-top: 16px;
  text-align: center;
}
.section6 h1,
.section7 h1 {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: var(--h1-line-height);
  margin: 0;
}
.section6 p {
  color: var(--gray-5, #999999);
  font-size: 24px;
  margin: 40px 0;
}
.section6 div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.section6 div img {
  flex: 1;
  width: 100%;
  max-width: calc(33.333% - 14px);
  height: auto;
  object-fit: cover;
}
.section7 {
  padding: 200px;
  padding-top: 245px;
}
.section7 h1 {
  margin-bottom: 90px;
}
.section7 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.section7 div {
  margin-top: 35px;
  display: flex;
  grid-area: 40%;
  justify-content: space-between;
}
.section7 div img {
  width: 49.5%;
}
.section7 .stats-section {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: space-between;
}
.section7 .stats-section .stat-item {
  flex-direction: column;
  background-color: #000;
  border-radius: 20px;
  padding: 30px;
  color: var(--white);
  box-shadow: 0 4px 11px 4px rgb(0 0 0 / 25%);
}
.section7 .stats-section .stat-item h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 20px;
}
.section7 .stats-section .stat-item p {
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
}
.section8 {
  padding: 295px 200px 200px 200px;
}
.section8 h3 {
  font-size: 44px;
  font-weight: bold;
  text-align: center;
  color: #0b0b0b;
  margin-bottom: 80px;
}
.section8 .faq-container {
  max-width: 960px;
  margin: 0 auto;
}
.section8 .faq-item {
  border-bottom: 1px solid #ededed;
  margin-bottom: 10px;
}
.section8 .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  color: #0b0b0b;
}
.section8 .faq-question span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
}
.section8 .faq-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.section8 .faq-item.active .faq-arrow {
  transform: rotate(-180deg);
}
.section8 .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;

  margin: 0 25px;
}
.section8 .faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 0 30px 0;
}
.section8 .faq-answer p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #757575;
  margin: 0;
}
.section9 {
  padding: 120px 0;
}
.section9 h2 {
  margin-bottom: 55px;
}
.section9 .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.section9 .hero-buttons a:last-child {
  background-color: #4d4d4d;
}
/* Footer */
.footer {
  background-color: var(--white);
  padding: 40px 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  width: 140px;
  height: 42px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-info p {
  font-size: var(--body2-size);
  font-weight: var(--body2-weight);
  line-height: var(--body2-line-height);
  color: var(--gray-6);
  margin: 0;
}

.footer-links {
  display: flex;
  margin-top: 20px;
  gap: 7px;
  align-items: center;
  font-size: var(--button2-size);
  font-weight: var(--button2-weight);
  line-height: var(--button2-line-height);
  color: var(--gray-6);
}

.footer-links .link-item {
  cursor: pointer;
  transition: color 0.2s;
}

.footer-links .link-item:hover {
  color: var(--primary-orange);
}

.footer-links .divider {
  color: var(--gray-6);
}

.footer-copyright p {
  font-size: var(--body2-size);
  font-weight: var(--body2-weight);
  line-height: var(--body2-line-height);
  color: var(--gray-6);
  margin: 0;
}

/* Modal Popup Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: block;
}

.modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  max-height: 95vh;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
  animation: slideIn 0.3s ease;
}

.modal-container.active {
  display: block;
}

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

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  transition: color 0.2s;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--primary-orange);
}

.modal-content {
  padding: 0;
  overflow-y: auto;
  max-height: calc(95vh - 80px);
}

.modal-content iframe {
  width: 100%;
  border: none;
  min-height: 80vh;
}

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

@keyframes slideIn {
  from {
    transform: translate(-50%, -60%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

/* Responsive Design - Base: 1920px */

/* Large Desktop (1440px ~ 1920px) */
@media (max-width: 1920px) and (min-width: 1441px) {
  .header {
    padding: 0 150px;
  }

  .section4 {
    padding: 200px 180px;
  }

  .section4 .sub-section .img_box4 {
    margin: 0 -180px;
    padding: 0 180px;
  }

  .section5 div img {
    padding: 0 150px;
  }
  .section5 h3 {
    padding: 0 150px;
  }

  .section6,
  .section7,
  .section8 {
    padding-left: 150px;
    padding-right: 150px;
  }

  .footer {
    padding: 40px 150px;
  }
}

/* Medium Desktop (1024px ~ 1440px) */
@media (max-width: 1440px) {
  .header {
    padding: 0 100px;
  }

  .user-type-toggle {
    padding: 3px;
  }

  .toggle-btn {
    padding: 7px 20px;
    font-size: 15px;
    height: 32px;
  }

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

  .user-type-toggle {
    padding: 3px;
  }

  .toggle-btn {
    padding: 7px 20px;
    font-size: 15px;
    height: 32px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .help-section h2 {
    font-size: 42px;
  }

  .help-grid {
    gap: 40px;
    padding: 0 20px;
  }

  .help-grid div {
    max-width: 240px;
  }

  .help-grid div img {
    min-height: 140px;
  }

  .help-grid div h4 {
    font-size: 30px;
  }

  .help-grid div p {
    font-size: 22px;
  }

  .section3 h2,
  .section9 h2 {
    font-size: 48px;
  }

  .section3 h3 {
    font-size: 28px;
  }

  .section4 {
    padding: 150px 100px;
  }

  .section4 .sub-section {
    margin-bottom: 180px;
  }

  .section4 .sub-section .wrap_title {
    margin-bottom: 50px;
  }

  .section4 .sub-section .wrap_title h4 {
    font-size: 28px;
    height: 68px;
    line-height: 66px;
  }

  .section4 .sub-section .wrap_title span {
    width: 44px;
    height: 44px;
  }

  .section4 .sub-section .wrap_title h4 {
    font-size: 28px;
    height: 68px;
    line-height: 66px;
  }

  .section4 .sub-section h3 {
    font-size: 32px;
    margin: 60px 0;
  }

  .section4 .sub-section .img_box2 {
    gap: 35px;
  }

  .section4 .sub-section .img_box4 {
    margin: 0 -100px;
    padding: 0 100px;
  }

  .section4 .sub-section .img_box3 {
    gap: 35px;
  }

  .section5 div img {
    padding: 0 100px;
    box-sizing: border-box;
  }

  .section5 h3 {
    padding: 0 100px;
  }

  .section6 {
    padding: 150px 100px;
  }

  .section7,
  .section8 {
    padding: 150px 100px;
  }

  .section6 h1,
  .section7 h1 {
    font-size: 48px;
  }

  .section7 .stats-section {
    gap: 35px;
  }

  .section7 .stats-section .stat-item {
    border-radius: 18px;
    padding: 26px;
  }

  .section7 .stats-section .stat-item h2 {
    font-size: 50px;
  }

  .section7 .stats-section .stat-item p {
    font-size: 20px;
  }

  .section4 .sub-section a {
    left: 65%;

    width: 140px;
    height: 48px;
    font-size: 14px;
  }

  .footer {
    padding: 40px 100px;
  }
}

/* Tablet (768px ~ 1023px) */
@media (max-width: 1023px) {
  .header {
    padding: 0 60px;
    height: 70px;
  }

  .header .logo {
    width: 130px;
    height: 40px;
  }

  .header-actions {
    gap: 12px;
  }

  .user-type-toggle {
    padding: 3px;
  }

  .toggle-btn {
    padding: 6px 16px;
    font-size: 14px;
    height: 30px;
  }

  .btn-primary {
    font-size: 14px;
    padding: 8px 16px;
    height: 38px;
  }

  .btn-lang {
    width: 38px;
    height: 38px;
  }

  .section4 .sub-section .wrap_title {
    margin-bottom: 40px;
  }

  .section4 .sub-section .wrap_title h4 {
    font-size: 24px;
    height: 58px;
    line-height: 56px;
  }

  .section4 .sub-section .wrap_title span {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .user-type-toggle {
    padding: 3px;
  }

  .toggle-btn {
    padding: 6px 16px;
    font-size: 14px;
    height: 30px;
  }

  .hero-section {
    height: 800px;
  }

  .hero-content {
    width: 90%;
    margin-top: 450px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .help-section {
    padding: 150px 60px;
  }

  .help-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .help-grid {
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 20px;
  }

  .help-grid div {
    width: calc(50% - 20px);
    max-width: 320px;
  }

  .help-grid div img {
    min-height: 160px;
  }

  .help-grid div h4 {
    font-size: 26px;
  }

  .help-grid div p {
    font-size: 18px;
  }

  .section3,
  .section9 {
    padding: 120px 60px;
  }

  .section3 h2,
  .section9 h2 {
    font-size: 36px;
  }

  .section3 h3 {
    font-size: 24px;
  }

  .section4 {
    padding: 120px 60px;
  }

  .section4 .sub-section {
    margin-bottom: 150px;
  }

  .section4 .sub-section .wrap_title h4 {
    font-size: 24px;
    height: 60px;
    line-height: 58px;
  }

  .section4 .sub-section .wrap_title span {
    width: 40px;
    height: 40px;
  }

  .section4 .sub-section h3 {
    font-size: 28px;
    margin: 50px 0;
  }

  .section4 .sub-section .img_box2 {
    gap: 30px;
  }

  .section4 .sub-section .img_box4 {
    margin: 0 -60px;
    padding: 0 60px;
  }

  .section4 .sub-section .img_box3 {
    gap: 30px;
  }

  .section5 div img {
    padding: 0 60px;
    box-sizing: border-box;
  }

  .section5 h3 {
    padding: 0 60px;
  }

  .section6 {
    padding: 120px 60px;
  }

  .section7,
  .section8 {
    padding: 120px 60px;
  }

  .section6 h1,
  .section7 h1 {
    font-size: 36px;
  }

  .section7 .stats-section {
    gap: 25px;
  }

  .section7 .stats-section .stat-item {
    border-radius: 16px;
    padding: 22px;
  }

  .section7 .stats-section .stat-item h2 {
    font-size: 44px;
    margin-bottom: 16px;
  }

  .section7 .stats-section .stat-item p {
    font-size: 19px;
  }

  .section4 .sub-section a {
    left: 65%;

    width: 140px;
    height: 48px;
    font-size: 14px;
  }

  .footer {
    padding: 40px 60px;
  }
}

/* Mobile (~ 767px) */
@media (max-width: 767px) {
  .header {
    padding: 0 20px;
    height: 60px;
  }

  .header .logo {
    width: 110px;
    height: 34px;
  }

  .header-actions {
    gap: 8px;
  }

  .btn-primary {
    font-size: 12px;
    padding: 6px 12px;
    height: 34px;
  }

  .btn-lang {
    width: 34px;
    height: 34px;
  }

  .user-type-toggle {
    padding: 2px;
  }

  .toggle-btn {
    padding: 5px 12px;
    font-size: 12px;
    height: 28px;
  }

  .btn-lang img {
    width: 20px;
    height: 15px;
  }

  .language-dropdown {
    min-width: 160px;
  }

  .hero-section {
    height: 700px;
  }

  .hero-content {
    width: 90%;
    margin-top: 380px;
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-description {
    font-size: 14px;
  }

  .help-section {
    padding: 100px 20px;
  }

  .help-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .help-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .help-grid div {
    width: calc(60% - 10px);
    max-width: 220px;
  }

  .help-grid div h4 {
    font-size: 20px;
    margin-top: 20px;
  }

  .help-grid div p {
    font-size: 14px;
  }

  .help-grid div > img {
    min-height: 140px;
    height: auto;
  }

  .section3,
  .section9 {
    padding: 80px 20px;
  }

  .section3 h2,
  .section9 h2 {
    font-size: 28px;
  }

  .section3 h3 {
    font-size: 18px;
  }

  .section4 {
    padding: 80px 20px;
  }

  .section4 .sub-section {
    margin-bottom: 100px;
  }

  .section4 .sub-section .wrap_title h4 {
    font-size: 20px;
    height: 50px;
    line-height: 48px;
  }

  .section4 .sub-section .wrap_title span {
    width: 36px;
    height: 36px;
  }

  .section4 .sub-section h3 {
    font-size: 22px;
    margin: 30px 0;
  }

  .section4 .sub-section a {
    width: 120px;
    height: 42px;
    font-size: 13px;
    left: 80%;
    bottom: 15px;
  }

  .section4 .sub-section .img_box2 {
    margin-top: 20px;
    gap: 20px;
  }

  .section4 .sub-section .img_box3 {
    gap: 20px;
  }

  .section4 .sub-section .img_box3 div {
    gap: 20px;
  }

  .section4 .sub-section .img_box4 {
    margin: 0 -20px;
    padding: 0 20px;
  }

  .section5 {
    padding: 80px 20px;
    margin-top: 100px;
  }

  .section5 div img {
    padding: 0 20px;
    box-sizing: border-box;
  }

  .section5 div {
    margin-top: 150px;
  }

  .section5 h3 {
    font-size: 18px;
    padding: 0 20px;
  }

  .section6 {
    padding: 80px 20px;
  }

  .section6 h1,
  .section7 h1 {
    font-size: 28px;
  }

  .section6 p {
    font-size: 16px;
    margin: 30px 0;
  }

  .section6 div {
    gap: 12px;
  }

  .section7 {
    padding: 80px 20px;
    padding-top: 120px;
  }

  .section7 h1 {
    margin-bottom: 40px;
  }

  .section7 div {
    margin-top: 20px;
    gap: 15px;
  }

  .section7 div img {
    width: 49.5%;
  }

  .section7 .stats-section {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .section7 .stats-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
  }

  .section7 .stats-section .stat-item {
    border-radius: 14px;
    padding: 18px;
  }

  .section7 .stats-section .stat-item h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .section7 .stats-section .stat-item p {
    font-size: 18px;
  }

  .section8 {
    padding: 120px 20px 80px 20px;
  }

  .section8 h3 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .section8 .faq-question {
    font-size: 16px;
    padding: 20px 0;
  }

  .section8 .faq-question span {
    font-size: 16px;
    gap: 8px;
  }

  .section8 .faq-question span img {
    width: 20px;
    height: 20px;
  }

  .section8 .faq-arrow {
    width: 20px;
    height: 20px;
  }

  .section8 .faq-answer {
    margin: 0 15px;
  }

  .section8 .faq-answer p {
    font-size: 14px;
  }

  .section9 {
    padding: 80px 20px;
  }

  .section9 h2 {
    margin-bottom: 40px;
  }

  .footer {
    padding: 30px 20px;
  }

  .footer-logo {
    width: 100px;
    height: 30px;
  }

  .footer-content {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .footer-info p {
    font-size: 12px;
  }

  .footer-links {
    font-size: 12px;
    margin-top: 15px;
  }

  .footer-copyright p {
    font-size: 12px;
  }
}
