.about-page {
  /* padding-top: 60px; */
  /* background: #ffffff; */
  color: #2c2c2c;
  font-family:
    "Lato",
    "Roboto",
    Source Han Sans SC,
    sans-serif;
}

/* Color Variables */
:root {
  --primary-olive: #9D0400;
  --primary-olive-dark: #7a7a52;
  --bg-light: #f5f5f0;
  --text-dark: #333333;
  --text-gray: #666666;
  --white: #ffffff;
}

.container-box {
  margin: 0 auto;
  padding: 0 150px;
}

@media (max-width: 1199px) {
  .container-box {
    padding: 0 80px;
  }
}

@media (max-width: 992px) {
  .container-box {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .container-box {
    padding: 0 20px;
  }
}

/* Hero Section */

.about-hero {
  position: relative;
  height: 41.7vw;
  min-height: 500px;
  background-size: cover;
  background-position: 0 0;
  background-color: #6b7b5e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(107, 123, 94, 0.85) 0%,
    rgba(90, 105, 78, 0.75) 100%
  );
  z-index: 1;
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 150px;
}

.about-hero .hero-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 30px 0;
  letter-spacing: 1px;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-hero .hero-subtitle {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.8;
  margin: 0;
  opacity: 0.95;
}

.about-hero .hero-small-images {
  position: absolute;
  right: 80px;
  bottom: 60px;
  z-index: 3;
  display: flex;
  gap: 15px;
}

.about-hero .hero-small-img {
  width: 140px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: #999;
}

.about-hero .hero-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section Title */

.section-title {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.8px;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
}

/* About Section */

.about-section {
  padding: 80px 0;
  background: #ffffff;
}

/* Company Profile Section */

.company-profile {
  background: #ffffff;
  padding: 80px 0;
}

.company-content {
  display: flex;
  gap: 2vw;
  align-items: flex-start;
}

.company-image-wrapper {
  flex: 0 0 50%;
  position: relative;
}

.company-main-image {
  width: 100%;
  height: auto;
  display: block;
}

.company-text {
  flex: 1;
  padding-top: 0;
  padding: 0.1vw 0;
}

.company-subtitle {
  font-size: 1vw;
  font-weight: bold;
  color: #333333;
  line-height: 1.4;
  margin-bottom: 0.5vw;
  margin-top: 0;
}

.company-text .company-description {
  font-size: 0.8vw;
  line-height: 20px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 5px;
  font-weight: 400;
}

.company-text .company-description:last-child {
  margin-bottom: 0;
}

/* Responsive for Company Profile */
@media (max-width: 992px) {
  .company-profile {
    padding: 50px 0;
  }
  .company-content {
    flex-direction: column;
    gap: 40px;
  }
  .company-image-wrapper,
  .company-text {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .company-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .company-profile {
    padding: 40px 0;
  }
  .company-content {
    gap: 30px;
  }
  .company-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .company-text .company-description {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
  }
}

/* Trust Section */

.trust-section {
  background: #ffffff;
  padding: 80px 0;
  padding-top: 30px;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2vw;
  margin-top: 50px;
}

.trust-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 302px;
  height: 292px;
  background: #fafaf9;
  border-radius: 8px;
  border: 1px solid #c8c8a9;
  overflow: hidden;
}

/* Question - Centered by default */
.trust-card .trust-question {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  text-align: center;
  transition:
    transform 0.4s ease,
    opacity 0.3s ease;
}

.trust-card .trust-question h4 {
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
  font-size: 20px;
  color: #7a7a4f;
}

/* Answer - Hidden below the card initially, includes the question, centered in card */
.trust-card .trust-answer {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 30px 25px;
  background: #9D0400;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.trust-card .trust-answer .answer-question {
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  line-height: 1.4;
  margin: 0 0 12px 0;
  text-align: left;
  width: 100%;
}

.trust-card .trust-answer p {
  font-weight: 500;
  font-size: 13px;
  color: #ffffff;
  line-height: 22px;
  margin: 0;
  text-align: left;
}

/* Hover State - Slide up from bottom with question and answer */
.trust-card:hover {
  background: #9D0400;
  border-color: #c8c8a9;
}

.trust-card:hover .trust-question {
  transform: translateY(-100%);
  opacity: 0;
}

.trust-card:hover .trust-question h4 {
  color: #ffffff;
}

.trust-card:hover .trust-answer {
  transform: translateY(0);
  opacity: 1;
}

.trust-card:hover .trust-answer p {
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
  .trust-section {
    padding: 50px 0;
  }
  .trust-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .trust-card {
    width: 100%;
    max-width: 350px;
    height: 250px;
  }
  .trust-card .trust-question {
    padding: 0 15px;
  }
  .trust-card .trust-question h4 {
    font-size: 16px;
  }
  .trust-card:hover .trust-question {
    transform: translateY(-80%);
  }
  .trust-card .trust-answer {
    padding: 25px 20px;
  }
  .trust-card .trust-answer .answer-question {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .trust-card .trust-answer p {
    font-size: 11px;
    line-height: 20px;
  }
}

/* Production Strength Section */

.production-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.production-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.production-tab {
  padding: 12px 35px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #9B9B9B;
  color: #9B9B9B;
  background-color: transparent;
}

.production-tab:hover {
  background: #9D0400;
  color: #FFFFFF;
  border: 1px solid #9D0400;
}

.production-tab.active {
  background: #9D0400;
  color: #FFFFFF;
  border: 1px solid #9D0400;
}

.production-grid-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.production-swiper {
  flex: 1;
  overflow: hidden;
}

.production-swiper .swiper-wrapper {
  display: flex;
  transition-timing-function: ease-out;
}

.production-swiper .swiper-slide {
  flex-shrink: 0;
  background-color: transparent;
}

.production-grid-item {
  aspect-ratio: 3/4;
  background: #ddd;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.production-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.production-grid-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.production-arrow {
  width: 48px;
  height: 48px;
  background: #CACAAD;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  color: white;
}

.production-arrow:hover {
  background: var(--primary-olive);
  color: #ffffff;
}

.production-arrow:disabled,
.production-arrow.swiper-button-disabled,
.production-arrow[style*="visibility: hidden"] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  background: #CACAAD;
}

.production-arrow svg {
  width: 20px;
  height: 20px;
}

/* Responsive for Production Section */
@media (max-width: 992px) {
  .production-tabs {
    flex-wrap: wrap;
    gap: 15px;
  }
  .production-tab {
    padding: 10px 25px;
    font-size: 14px;
  }
  .production-grid-wrapper {
    gap: 15px;
  }
  .production-arrow {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .production-section {
    padding: 50px 0;
  }
  .production-tabs {
    gap: 10px;
    margin-bottom: 30px;
  }
  .production-tab {
    padding: 8px 20px;
    font-size: 13px;
  }
  .production-grid-wrapper {
    gap: 10px;
  }
  .production-arrow {
    width: 36px;
    height: 36px;
  }
  .production-arrow svg {
    width: 16px;
    height: 16px;
  }
}

/* Challenges Section */

.challenges-section {
  background: #ffffff;
  padding: 80px 0;
}

.challenges-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--text-gray);
  margin: -30px 0 50px 0;
}

.challenge-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.challenge-card {
  display: flex;
  gap: 40px;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.3s ease;
}


.challenge-image {
  flex: 0 0 400px;
  background: #ddd;
  min-height: 300px;
}

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

.challenge-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.challenge-title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  margin: 0 0 15px 0;
}

.challenge-desc {
  font-size: 15px;
  font-weight: 500;
  color: #666666;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.challenge-solution,
.challenge-result {
  margin-bottom: 15px;
}

.challenge-solution p,
.challenge-result p {
  ont-weight: bold;
  font-size: 15px;
  color: #333333;
  margin: 0 0 8px 0;
}

.challenge-solution ul,
.challenge-result ul {
  margin: 0;
}

.challenge-solution li,
.challenge-result li {
  font-weight: 500;
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 5px;
}

.btn-challenge {
  display: inline-block;
  padding: 10px 25px;
  background: #9D0400;
  box-shadow: 0px 4px 42px 0px rgba(38, 33, 22, 0.1);
  border-radius: 4px;
  color: #ffffff;
  text-decoration: none;
  margin-top: 10px;
  transition: all 0.3s ease;
  align-self: flex-start;
  font-weight: bold;
  font-size: 15px;
  color: #ffffff;
}

.btn-challenge:hover {
    background: #9D0400 !important;
  color: #ffffff !important;

  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 139, 94, 0.3);
}

/* Responsive for Challenges Section */
@media (max-width: 992px) {
  .challenge-card {
    flex-direction: column;
  }
  .challenge-image {
    flex: 0 0 auto;
    height: 250px;
  }
  .challenge-content {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .challenges-section {
    padding: 50px 0;
  }
  .challenge-title {
    font-size: 18px;
  }
  .challenge-image {
    height: 200px;
  }
}

/* Quality Section */

.quality-section {
  background: #ffffff;
  padding: 80px 0;
}
.quality-section .section-title {
  margin-bottom: 30px;
}

.quality-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666666;
  margin: 35px 0;
}

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

.quality-step {
  margin-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
  /* background: #9D0400; */
  border: 1px solid #666666;
}

.quality-step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  /* background: #9D0400; */
  color: #9D0400;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  gap: 20px;
}

.quality-step-header:hover {
  /* background: #a8a86a; */
}

.quality-step.active .quality-step-header {
  border-radius: 8px 8px 0 0;
}

.quality-step-title {
  /* flex: 1; */
  font-size: 18px;
  font-weight: 600;
  color: #9D0400;
}

.quality-step-arrow {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.quality-step-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.quality-step.active .quality-step-arrow {
  transform: rotate(90deg);
}

.quality-step-content {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 30px;
  /* background: #9D0400; */
  border-top: 1px solid #DEDEDE;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  opacity: 0;
  transition: grid-template-rows 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
}

.quality-step-content > * {
  overflow: hidden;
}

.quality-step.active .quality-step-content {
  grid-template-rows: 1fr;
  padding: 20px 30px;
  opacity: 1;
}

.quality-step-content p {
  font-size: 14px;
  color: #9D0400;
  line-height: 1.8;
  margin: 0;
}

/* Step Divider */
.quality-step-divider {
  display: flex;
  justify-content: center;
  padding: 15px 0;
}

.quality-step-divider-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
}

.quality-step-divider-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Responsive for Quality Section */
@media (max-width: 768px) {
  .quality-section {
    padding: 50px 0;
  }
  .quality-step-header {
    padding: 15px 20px;
  }
  .quality-step-title {
    font-size: 15px;
  }
  .quality-step-content {
    padding: 15px 20px;
  }
  .quality-step-content p {
    font-size: 13px;
  }
  .quality-step-divider {
    padding: 12px 0;
  }
  .trust-map-desc{
    font-size: 12px !important;
  }
  .commitment-card h4{
    font-size: 16px !important;
  }
  .commitment-card p{
    font-size: 12px !important;
    line-height: 16px !important;
  }
}

/* Trust Map Section */

.trust-map-section {
  background: #ffffff;
  padding: 80px 0;
  padding-top: 30px;
}
.trust-map-section .container-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-map-section .section-title {
  margin-bottom: 30px;
}
.trust-map-subtitle {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #666666;
  margin: 10px 0;
}

.trust-map-desc {
  text-align: center;
  font-size: 0.7vw;

  color: #9D0400;
  border: 1px solid #9D0400;
  font-weight: 500;
  border-radius: 4px;
  margin-top: 2vw;
  margin-bottom: 42px;
  line-height: 1.6;
  display: inline-block;
  padding: 13px 46px;
}

.world-map-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.world-map-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Responsive for Trust Map Section */
@media (max-width: 768px) {
  .trust-map-section {
    padding: 50px 0;
  }
  .world-map-container {
    min-height: 300px;
  }
}

/* Commitment Section */

.commitment-section {
  padding: 80px 0;
}
.commitment-section .section-title {
  margin-bottom: 30px;
}
.commitment-quote {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  font-size: 15px;
  color: #666666;
  margin-bottom: 30px;
}

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

.commitment-card {
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  background: #fafaf9;
  border-radius: 8px;
  flex: 1;
}

.commitment-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.commitment-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--primary-olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.commitment-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.commitment-card h4 {
  font-weight: bold;
  font-size: 1vw;
  color: #333333;
}

.commitment-card p {
  font-weight: 500;
  font-size: 0.7vw;
  color: #333333;
  line-height: 1.2vw;
}

/* Responsive for Commitment Section */
@media (max-width: 992px) {
  .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .commitment-section {
    padding: 50px 0;
  }
  .commitment-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Partnership Section */

.partnership-section {
  background: #ffffff;
  padding: 80px 0 100px;
}
.partnership-section .partnership-section-box {
  /* background: #f6f6f2; */
  /* border: 1px solid rgba(146, 146, 105, 0.5); */
  padding: 80px 0;
  background: #F9F7F7;
}
.partnership-desc {
  text-align: center;
  font-size: 16px;
  color: var(--text-gray);
  margin: -30px 0 50px 0;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
}

.partnership-card {
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  color: #333333;
  transition: all 0.3s ease;
  /* background: #9D0400; */
  border-radius: 8px;

  background: #FFFFFF;
box-shadow: -1px -4px 25px 0px rgba(156,132,132,0.2);
border-radius: 8px;
}

.partnership-card:hover {
  /* background: var(--primary-olive-dark); */
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(139, 139, 94, 0.3);
}

.partnership-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partnership-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.partnership-card h4 {
  font-weight: bold;
  font-size: 20px;
  margin: 0 0 12px 0;
}

.partnership-card p {
  font-weight: 500;
  font-size: 13px;
  color: #333333;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.btn-partnership {
  display: inline-block;
  padding: 12px 25px;
  /* box-shadow: 0px 4px 42px 0px rgba(38, 33, 22, 0.1); */
  border-radius: 4px;
  /* border: 1px solid #fafaf9; */
  box-shadow: 0px 4px 42px 0px rgba(38,33,22,0.1);
  border: 1px solid #9D0400;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 15px;
  color: #9D0400;
}

.btn-partnership:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

/* Responsive for Partnership Section */
@media (max-width: 992px) {
  .partnership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .partnership-section {
    padding: 50px 0 70px;
  }
  .partnership-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.contact-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.contact-items-border {
  border-bottom: 1px solid #dedede;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 50%;
}

.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 2px;
}

.contact-text {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
  font-weight: 500;
  flex: 1;
  display: flex;
  align-items: center;
}

.contact-item .contact-text {
  display: flex;
  gap: 5px;
}

.contact-item .contact-text span {
  margin-right: 15px;
}

/* Responsive Design */

@media (max-width: 1199px) {
  .about-hero .hero-title {
    font-size: 48px;
  }
  .company-content,
  .trade-show-content {
    gap: 40px;
  }
  .trade-show-carousel-wrapper {
    gap: 15px;
  }
  .trade-show .container-box {
    padding-left: 150px !important;
    padding-right: 150px !important;
  }
}

@media (max-width: 992px) {
  .about-section {
    padding: 50px 0;
  }
  .about-hero {
    height: 45vw;
    min-height: 280px;
  }
  .about-hero .hero-title {
    font-size: 36px;
  }
  .section-title {
    font-size: 24px;
    margin-bottom: 35px;
  }
  .company-content,
  .trade-show-content {
    flex-direction: column;
    gap: 30px;
  }
  .company-carousel-wrapper,
  .company-text,
  .exhibition-image-wrapper,
  .exhibition-info {
    max-width: 100%;
  }
  .company-carousel {
    height: 350px;
  }
  .exhibition-image-wrapper {
    height: 280px;
  }
  .trade-show-carousel-wrapper {
    flex-direction: row;
  }
  .exhibition-nav {
    width: 40px;
    height: 40px;
  }
  .exhibition-nav img {
    width: 20px;
    height: 20px;
  }
  .trade-show .container-box {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
}

@media (max-width: 768px) {
  .about-page {
    padding-top: 50px;
  }
  .about-section {
    padding: 40px 0;
  }
  .about-hero {
    min-height: 250px;
    height: 45vw;
  }
  .about-hero .hero-title {
    font-size: 28px;
    letter-spacing: 1px;
  }
  .section-title {
    font-size: 20px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
  }
  .company-carousel {
    height: 250px;
  }
  .exhibition-image-wrapper {
    height: 200px;
  }
  .company-description,
  .info-item,
  .contact-text {
    font-size: 13px;
    line-height: 1.6;
  }
  .exhibition-carousel-wrapper {
    gap: 10px;
  }
  .exhibition-nav {
    width: 36px;
    height: 36px;
  }
  .exhibition-nav img {
    width: 18px;
    height: 18px;
  }
  .trade-show-carousel-wrapper {
    gap: 10px;
  }
  .contact-item {
    width: 100%;
    margin-bottom: 15px;
  }
  .contact-items-border {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .contact-icon {
    width: 20px;
    height: 20px;
  }
  .trade-show .container-box {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

@media (max-width: 480px) {
  .about-page {
    padding-top: 45px;
  }
  .about-section {
    padding: 30px 0;
  }
  .about-hero {
    min-height: 200px;
    height: 50vw;
  }
  .about-hero .hero-title {
    font-size: 24px;
    letter-spacing: 0.5px;
  }
  .about-hero .hero-subtitle {
    font-size: 12px;
    line-height: 1.6;
  }
  .about-hero .hero-small-images {
    display: none;
  }
  .about-hero .hero-content {
    padding: 0 20px;
  }
  .section-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .company-carousel {
    height: 220px;
  }
  .exhibition-image-wrapper {
    height: 180px;
  }
  .company-description,
  .info-item {
    font-size: 12px;
    line-height: 1.5;
  }
  .contact-text {
    font-size: 12px;
    line-height: 1.5;
    flex-direction: column;
    gap: 8px;
    display: block !important;
  }
  .contact-item .contact-text span {
    margin-right: 0;
  }
  .exhibition-nav {
    width: 32px;
    height: 32px;
  }
  .exhibition-nav img {
    width: 26px;
    height: 26px;
  }
  .trade-show-carousel-wrapper {
    gap: 8px;
  }
  .info-item {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .trade-show .container-box {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .company-content,
  .trade-show-content {
    gap: 20px;
  }
  .trade-show-content {
    padding: 15px;
  }
  /* Trust Cards */
  .trust-card {
    padding: 20px 15px;
    min-height: auto;
  }
  .trust-icon {
    width: 40px;
    height: 40px;
  }
  .trust-icon img {
    width: 24px;
    height: 24px;
  }
  .trust-content h4 {
    font-size: 14px;
  }
  /* Production */
  .production-tabs {
    flex-direction: column;
    gap: 10px;
  }
  .production-tab {
    width: 100%;
  }
  .production-grid-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  .production-arrow {
    width: 36px;
    height: 36px;
  }
  /* Challenges */
  .challenge-content {
    padding: 20px;
  }
  .challenge-title {
    font-size: 16px;
  }
  /* Quality */
  .quality-step-header {
    padding: 12px 15px;
    gap: 10px;
  }
  .quality-step-title {
    font-size: 13px;
  }
  .quality-step-icon {
    width: 30px;
    height: 30px;
  }
  .quality-step-icon img {
    width: 18px;
    height: 18px;
  }
  /* Commitment & Partnership */
  .commitment-card,
  .partnership-card {
    padding: 25px 20px;
  }
}
