/* Trang Chu Page Specific Styles */

/* Hero Section */
.hero-section {
  background: rgba(255, 213, 145, 0.1);
  min-height: 546px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-wrapper {
  width: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 546px;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 714px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}

/* Hero Text Overlay */

.hero-text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hero-text {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: 2.24px;
  line-height: 1.21;
  text-transform: capitalize;
  margin: 0;
  padding: 0 20px;
}

/* PC Screen - Hero Banner + Header = 100vh */
@media (min-width: 1024px) {
  .hero-section {
    height: calc(100vh - 100px);
    min-height: calc(100vh - 100px);
  }

  .hero-wrapper {
    height: 100%;
    min-height: calc(100vh - 100px);
  }

  .hero-image {
    height: 100%;
  }
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  color: white;
  text-align: center;
}

.scroll-dots {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.scroll-dots span {
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
}

.scroll-indicator p {
  font-size: 12px;
  text-transform: capitalize;
}

/* Brand Alliance Title Section */
.brand-alliance-title {
  background-color: #FFFFFF;
  padding: 50px 0;
}

/* Brand Alliance Section */
.brand-alliance {
  background-color: #ffffff;
  padding: 100px 0;
}

.section-title {
  font-size: 40px;
  font-weight: 900;
  color: #2FA84F;
  text-transform: uppercase;
  margin-bottom: 0;
  text-align: center;
}

.section-title a.alliance-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.section-title a.alliance-link:hover {
  opacity: 0.8;
}

.brand-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
  align-items: start;
}

.brand-card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.brand-card-wrapper:hover {
  transform: translateY(-5px);
}

.brand-card {
  width: 100%;
  max-width: 346px;
  height: 189px;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  place-items: center;
}

.brand-card.kim66 {
  background: linear-gradient(135deg, #2FA84F, #2FA84F);
}

.brand-card.kim88 {
  background-color: #fff9f0;
}

.brand-card.kim99 {
  background: linear-gradient(135deg, #1a1a1a, #000);
}

.brand-image {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-logo-wrapper {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.brand-logo {
  height: 38px;
  width: auto;
}

.brand-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

/* About Us Section */
.about-us-section {
  padding: 100px 0;
  background-color: #ffffff;
  text-align: center;
}

.about-us-section .container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

.about-us-title {
  font-size: 50px;
  font-weight: 900;
  color: #2FA84F;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  line-height: 50px;
  width: 100%;
}

.about-us-text {
  font-size: 32px;
  color: #333333;
  text-align: center;
  line-height: 36px;
  max-width: 1170px;
  margin: 0 auto 60px;
  width: 100%;
}

.about-us-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
  flex-wrap: wrap;
  width: 100%;
}

.about-us-tag-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.about-us-lotus-icon {
  position: absolute;
  width: 100%;
  max-width: 150px;
  height: auto;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.about-us-tag {
  font-size: 32px;
  color: #2FA84F;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Company Introduction Section */
.company-intro-section {
  padding: 100px 0 200px 0;
  background-image: url("/assets/trangchu/bg-about-2.png");
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
  position: relative;
  overflow: visible;
}

.company-intro-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  background-color: #f2f2f2;
  width: 100%;
}

.company-intro-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 15px;
  background-color: #f2f2f2;
  width: 100%;
}

.company-intro-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.company-intro-image {
  width: 100%;
}

.company-intro-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.company-intro-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.company-intro-title {
  font-size: 50px;
  font-weight: 900;
  color: #2FA84F;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}

.company-intro-text {
  font-size: 20px;
  color: #333333;
  line-height: 1.8;
  margin: 0;
}

/* Brand Showcase Section */
.brand-showcase {
  width: 100%;
  min-height: 75vh;
  background: url("/assets/trangchu/bg-about.png") lightgray 50% / cover
    no-repeat;
  background-attachment: fixed;
  position: relative;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
}

.brand-showcase-about {
  position: absolute;
  top: 210px;
  left: 250px;
  max-width: 1200px;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.brand-showcase-title {
  position: absolute;
  top: 80px;
  left: 250px;
  font-size: 48px;
  z-index: 2;
  font-weight: 800;
  color: #2FA84F;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0px 4px 8.9px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.brand-showcase-text {
  max-width: 1200px;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.5;
  text-shadow: 0px 4px 8.9px rgba(0, 0, 0, 0.5);
}

.brand-showcase-text p {
  margin: 0 0 20px 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.brand-showcase-text .highlight {
  color: #2FA84F;
  font-weight: 800;
  font-size: 48px;
  font-family: "Inter", sans-serif;
}

.brand-showcase-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.brand-showcase-logo img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.brand-showcase-tagline {
  font-size: 32px;
  font-weight: 700;
  color: #2FA84F;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Brand Information Section */
.brand-info {
  padding: 50px 0;
  background-color: white;
}

.brand-info .container {
  margin-bottom: 40px;
}

.brand-info .section-title {
  margin-bottom: 0;
}

.carousel-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Swiper Custom Styles */
.brandSwiper {
  width: 100%;
  padding: 0;
  overflow: visible;
  position: relative;
  margin: 0 auto;
}

.brandSwiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.brandSwiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  flex-shrink: 0;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  padding: 20px;
  position: relative;
}

.carousel-controls > * {
  margin: 0 !important;
  padding: 0 !important;
}

.brandSwiper-pagination {
  order: 2;
}

.brandSwiper-pagination {
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: auto !important;
}

.brandSwiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #ccc;
  opacity: 1;
  margin: 0 !important;
}

.brandSwiper-pagination .swiper-pagination-bullet-active {
  background: #1F7A3F;
}

.brandSwiper .swiper-button-next,
.brandSwiper .swiper-button-prev {
  color: #ffffff !important;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  font-size: 24px;
  margin-top: 0 !important;
}

.brandSwiper .swiper-button-next:after,
.brandSwiper .swiper-button-prev:after {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff !important;
}

.brandSwiper .swiper-button-next:hover,
.brandSwiper .swiper-button-prev:hover {
  opacity: 0.7;
}

.carousel-image-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  touch-action: none;
  user-select: none;
}

.carousel-image {
  width: 100%;
  height: 512px;
  object-fit: cover;
  display: block;
}

.carousel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  min-height: 112px;
  background-color: white;
}

.carousel-logo {
  height: 33px;
  margin-bottom: 15px;
}

.carousel-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: #2FA84F;
  text-transform: capitalize;
  text-align: center;
  margin: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
}

.dot.active {
  background: #2FA84F;
}

/* Culture Section */
/* Job Invitation Section */
.job-invitation {
  background-color: #ffffff;
  padding: 100px 0;
}

.job-invitation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.job-invitation-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.job-title {
  font-size: 50px;
  font-weight: 500;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: -3.5px;
}

.job-subtitle {
  font-size: 60px;
  font-weight: 900;
  color: #2FA84F;
  text-transform: uppercase;
  line-height: 83px;
}

.job-btn {
  background-color: #2FA84F;
  color: #F2F2F2;
  border: none;
  padding: 20px 40px;
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
  border-radius: 20px;
  cursor: pointer;
  letter-spacing: -1.6px;
  width: fit-content;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: inline-block;
}

.job-btn:hover {
  transform: scale(1.05);
}

.job-image {
  width: 100%;
  max-width: 671px;
  height: 376px;
  overflow: hidden;
  border-radius: 10px;
}

.job-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Benefits Cards Section */
.benefits-cards {
  padding: 100px 0;
  background-color: white;
}

/* Difference Section */
.difference-section {
  text-align: center;
  margin-bottom: 80px;
}

.difference-title {
  font-size: 50px;
  font-weight: 900;
  color: #2FA84F
;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  line-height: 50px;
}

.difference-text {
  font-weight: bold;
  font-size: 20px;
  color: #33333;
  text-align: center;
  line-height: 35px;
  max-width: 1145px;
  margin: 0 auto;
}

.benefits-title {
  font-size: 36px;
  font-weight: 700;
  color: #2FA84F;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 60px;
  line-height: 56px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card {
  background-color: #F2F2F2;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.card-header {
  background-color: #2FA84F;
  color: #333333;
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
  line-height: 1.35;
}

.card-body {
  background-color: #FFFFFF;
  padding: 20px;
  min-height: 134px;
  flex: 1;
  display: flex;
  align-items: center;
}

.card-body p {
  font-size: 12px;
  color: #333333;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  font-weight: bold;
}

/* Responsive - Trang Chu Specific */
@media (min-width: 1024px) {
  .hero-section {
    height: calc(100vh - 100px);
    min-height: calc(100vh - 100px);
  }

  .hero-wrapper {
    height: 100%;
    min-height: calc(100vh - 100px);
  }

  .hero-image {
    height: 100%;
  }

  .hero-image img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 1400px) {
  .hero-text {
    font-size: 28px;
    letter-spacing: 1.96px;
  }

  .brand-cards {
    gap: 50px;
  }

  .brand-showcase {
    min-height: 75vh;
    padding: 60px 40px;
  }

  .brand-showcase-title {
    left: 200px;
    top: 60px;
    font-size: 42px;
  }

  .brand-showcase-about {
    left: 200px;
    top: 140px;
    max-width: 1000px;
    padding: 30px 40px;
  }

  .brand-showcase-text {
    max-width: 850px;
    font-size: 30px;
  }

  .brand-showcase-text p {
    margin: 0 0 24px 0;
  }
}

@media (max-width: 1300px) {
  .brand-cards {
    gap: 30px;
  }
}

@media (max-width: 1200px) {
  .hero-text {
    font-size: 26px;
    letter-spacing: 1.82px;
  }

  .brand-showcase {
    padding: 50px 30px;
  }

  .brand-showcase-title {
    left: 150px;
    top: 50px;
    font-size: 38px;
  }

  .brand-showcase-about {
    left: 150px;
    top: 120px;
    max-width: 800px;
    padding: 25px 35px;
  }

  .brand-showcase-text {
    max-width: 750px;
    font-size: 28px;
  }

  .brand-showcase-text p {
    margin: 0 0 22px 0;
  }
}

@media (max-width: 1300px) {
  .brand-cards {
    gap: 30px;
  }

  .brand-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  .brand-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .brand-card {
    width: 100%;
    max-width: 100%;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .job-invitation-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .job-image {
    max-width: 100%;
  }
}

@media (max-width: 1137px) {
  .brand-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }

  .cards-grid {
    gap: 20px;
  }
}

@media (max-width: 1023px) {
  /* Hero Section */
  .hero-section {
    min-height: 350px;
    height: auto;
  }

  .hero-wrapper {
    min-height: 350px;
    height: auto;
  }

  .hero-image {
    height: 400px;
  }

  .hero-text-overlay {
    height: 60px;
  }

  .hero-text {
    font-size: 24px;
    letter-spacing: 1.68px;
    padding: 0 20px;
  }

  .brand-showcase {
    background-attachment: scroll;
  }

  .brand-showcase-about {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    max-width: 100% !important;
    padding: 0 40px;
  }

  .brand-showcase-text {
    max-width: 100% !important;
  }

  .brand-showcase-title {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    font-size: 40px;
    margin-bottom: 30px;
    padding: 0 40px;
  }

  .brand-showcase-text {
    font-size: 28px;
  }

  .brand-showcase-text .highlight {
    font-size: 42px;
  }

  .brand-cards {
    gap: 40px;
  }

  .cards-grid {
    gap: 15px;
  }

  .company-intro-section {
    padding: 60px 0 150px 0;
    background-image: none;
    background-color: #fff9f0;
  }

  .company-intro-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .company-intro-image {
    order: 1;
  }

  .company-intro-content {
    order: 2;
  }

  .company-intro-title {
    font-size: 40px;
    text-align: center;
  }

  .company-intro-text {
    font-size: 18px;
  }

  .difference-section {
    margin-bottom: 60px;
  }

  .difference-title {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 25px;
  }

  .difference-text {
    font-size: 18px;
    line-height: 32px;
    padding: 0 30px;
  }

  .about-us-section {
    padding: 60px 0;
  }

  .about-us-title {
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 30px;
  }

  .about-us-text {
    font-size: 20px;
    line-height: 30px;
    padding: 0 20px;
  }

  .about-us-tag {
    font-size: 20px;
  }

  .about-us-tags {
    gap: 30px;
  }

  .about-us-tag-wrapper {
    min-width: 150px;
  }

  .about-us-lotus-icon {
    max-width: 150px;
  }
}

@media (max-width: 768px) {
  /* Hero Section */
  .hero-section {
    min-height: 400px;
  }

  .hero-wrapper {
    min-height: 400px;
  }

  .hero-image {
    height: 400px;
    margin-top: 0;
  }

  /* About Company Section */
  .about-company-section {
    padding: 60px 0;
  }

  .about-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .about-text {
    font-size: 16px;
  }

  /* Brand Showcase */
  .brand-showcase {
    min-height: 70vh;
    padding: 50px 15px;
  }

  .brand-showcase-about {
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .brand-showcase-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .brand-showcase-text {
    max-width: 100%;
    font-size: 20px;
  }

  .brand-showcase-text .highlight {
    font-size: 32px;
  }

  .brand-showcase-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }

  .brand-showcase-logo img {
    height: 70px;
  }

  .brand-showcase-tagline {
    font-size: 20px;
    letter-spacing: 1px;
  }

  /* Brand Alliance Title */
  .brand-alliance-title {
    padding: 40px 0;
  }

  /* Brand Alliance */
  .brand-alliance {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
    padding-left: 0;
    margin-bottom: 0;
    text-align: center;
  }

  .brand-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .brand-card {
    width: 100%;
    max-width: 100%;
  }

  /* Company Introduction Section */
  .company-intro-section {
    padding: 50px 0 150px 0;
  }

  .company-intro-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .company-intro-image {
    order: 1;
  }

  .company-intro-content {
    order: 2;
  }

  /* About Us Section */
  .about-us-section {
    padding: 50px 0;
  }

  .about-us-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 25px;
  }

  .about-us-text {
    font-size: 18px;
    line-height: 28px;
    padding: 0 20px;
  }

  .about-us-tags {
    flex-direction: column;
    gap: 0;
  }

  .about-us-tag-wrapper {
    width: 100%;
    min-width: auto;
    min-height: 120px;
    padding: 20px 0;
  }

  .about-us-lotus-icon {
    max-width: 120px;
  }

  /* Carousel */
  .carousel-wrapper {
    flex-direction: column;
  }

  .carousel {
    min-height: 300px;
  }

  .carousel-item {
    flex: 0 0 100%;
  }

  .carousel-image {
    height: 300px;
  }

  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .carousel-content {
    padding: 20px;
  }

  .carousel-content h3 {
    font-size: 20px;
  }

  .carousel-controls {
    flex-direction: row;
    gap: 20px;
  }

  /* Job Invitation */
  .job-invitation {
    padding: 60px 0;
  }

  .job-invitation-grid {
    text-align: center;
  }

  .job-title {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .job-subtitle {
    font-size: 36px;
    line-height: 50px;
  }

  .job-btn {
    font-size: 20px;
    padding: 15px 30px;
    margin: 0 auto;
  }

  .job-image {
    height: 250px;
  }

  /* Benefits Cards */
  .benefits-cards {
    padding: 60px 0;
  }

  .difference-section {
    margin-bottom: 50px;
  }

  .difference-title {
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 20px;
  }

  .difference-text {
    font-size: 18px;
    line-height: 30px;
    padding: 0 20px;
  }

  .benefits-title {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 40px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-header {
    font-size: 16px;
    padding: 15px;
  }

  .card-body {
    padding: 15px;
    min-height: auto;
  }

  .card-body p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  /* Hero */
  .hero-section {
    min-height: 300px;
  }

  .hero-wrapper {
    min-height: 300px;
  }

  .hero-image {
    height: 300px;
  }

  .hero-text-overlay {
    height: 50px;
  }

  .hero-text {
    font-size: 18px;
    letter-spacing: 1.26px;
    padding: 0 15px;
  }

  /* About Company Section */
  .about-company-section {
    padding: 40px 0;
  }

  .about-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .about-text {
    font-size: 14px;
    text-align: left;
  }

  /* Sections */
  .section-title {
    font-size: 24px;
  }

  .brand-card {
    height: 150px;
  }

  .brand-logo {
    height: 30px;
  }

  .brand-subtitle {
    font-size: 16px;
  }

  /* Carousel */
  .carousel {
    min-height: 250px;
  }

  .carousel-image {
    height: 250px;
  }

  .carousel-content h3 {
    font-size: 18px;
  }

  /* Carousel Controls */
  .carousel-controls {
    padding: 15px;
    gap: 8px;
  }

  .brandSwiper-button-next,
  .brandSwiper-button-prev {
    width: 32px;
    height: 32px;
  }

  .brandSwiper-button-next:after,
  .brandSwiper-button-prev:after {
    font-size: 20px;
  }

  .brandSwiper-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }

  /* Brand Showcase */
  .brand-showcase {
    min-height: auto;
    padding: 40px 15px;
    background-attachment: scroll;
  }

  .brand-showcase-about {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    max-width: 100% !important;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .brand-showcase-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .brand-showcase-text {
    max-width: 100% !important;
    font-size: 18px;
  }

  .brand-showcase-text .highlight {
    font-size: 28px;
  }

  /* Job Invitation */
  .job-title {
    font-size: 24px;
  }

  .job-subtitle {
    font-size: 28px;
    line-height: 40px;
  }

  .job-btn {
    font-size: 18px;
    padding: 12px 25px;
  }

  .job-image {
    height: 200px;
  }

  /* Difference Section */
  .difference-section {
    margin-bottom: 40px;
  }

  .difference-title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 15px;
  }

  .difference-text {
    font-size: 16px;
    line-height: 28px;
    padding: 0 15px;
  }

  /* About Us Section */
  .about-us-section {
    padding: 40px 0;
  }

  .about-us-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  .about-us-text {
    font-size: 16px;
    line-height: 26px;
    padding: 0 15px;
  }

  .about-us-tags {
    gap: 20px;
  }

  .about-us-tag {
    font-size: 16px;
  }

  /* Carousel Controls */
  .carousel-controls {
    padding: 10px;
    gap: 6px;
  }

  .brandSwiper-button-next,
  .brandSwiper-button-prev {
    width: 28px;
    height: 28px;
  }

  .brandSwiper-button-next:after,
  .brandSwiper-button-prev:after {
    font-size: 18px;
  }

  .brandSwiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  /* Brand Showcase */
  .brand-showcase {
    min-height: auto;
    padding: 60px 20px;
    background-attachment: scroll;
  }

  .brand-showcase-about {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    max-width: 100% !important;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .brand-showcase-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .brand-showcase-text {
    max-width: 100% !important;
    font-size: 24px;
  }

  .brand-showcase-text .highlight {
    font-size: 36px;
  }

  .brand-showcase-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }

  .brand-showcase-logo img {
    height: 80px;
  }

  .brand-showcase-tagline {
    font-size: 24px;
    letter-spacing: 1px;
  }
}
