/*==========================================
        LOGO IMAGE
===========================================*/

/* .logo-img {
  height: 36px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  flex-shrink: 0;
} */

/* @media (max-width: 768px) {
  .logo-img {
    height: 28px;
    max-width: 80px;
  }
} */

/*==========================================
        WHO WE ARE — STORY SECTION
===========================================*/

.about-story-section {
  background: #f8f9fa;
  padding: 100px 0;
}

.about-story-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(245, 130, 17, .1);
  color: #FDC900;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 20px;
}

.about-story-badge i {
  width: 16px;
  height: 16px;
}

.about-story-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: #14181b;
  margin: 0 0 24px;
}

.highlight {
  display: inline-block;
  background: #ffca2c;
  color: #1b1b1b !important;
  padding: 10px 14px;
  border-radius: 4px;
}

.about-story-text {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Story Media */
.about-story-media {
  position: relative;
}

.about-story-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.about-story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-story-experience-box {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: #FDC900;
  color: #fff;
  padding: 28px 32px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(245, 130, 17, .35);
  text-align: center;
}

.about-story-experience-box h2 {
  font-size: 48px;
  font-weight: 900;
  margin: 0;
  line-height: 1;
}

.about-story-experience-box p {
  font-size: 13px;
  font-weight: 600;
  margin: 6px 0 0;
  opacity: .9;
}

.about-story-floating-card {
  position: absolute;
  top: 30px;
  right: -20px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-story-floating-card i {
  width: 28px;
  height: 28px;
  color: #FDC900;
}

.about-floating-num {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #14181b;
}

.about-floating-label {
  display: block;
  font-size: 12px;
  color: #999;
}

/* Mission / Vision cards below image */
.about-mv-flex {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.about-mv-card {
  flex: 1;
  display: flex;
  gap: 14px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  transition: .35s;
}

.about-mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
}

.about-mv-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(245, 130, 17, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FDC900;
}

.about-mv-icon i {
  width: 20px;
  height: 20px;
}

.about-mv-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #14181b;
  margin: 0 0 6px;
}

.about-mv-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/*==========================================
        WHO WE ARE — FULL WIDTH DETAIL
===========================================*/

.about-detail-section {
  background: #fff;
  padding: 60px 0 80px;
}

.about-detail-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-detail-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 24px;
}

.about-detail-content p:last-child {
  margin-bottom: 0;
}

/*==========================================
        MISSION / VISION / VALUES
===========================================*/

.about-values-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.about-values-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-values-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-values-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 13, 14, .92), rgba(11, 13, 14, .85));
}

.about-values-banner .wrap {
  position: relative;
  z-index: 2;
}

.about-values-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.about-values-intro .eyebrow {
  color: #FDC900;
}

.about-values-intro h2 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin: 12px 0 16px;
  line-height: 1.2;
}

.about-values-intro p {
  font-size: 16px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-value-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 32px 28px;
  transition: .35s;
}

.about-value-card:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-6px);
}

.about-value-icon {
  width: 52px;
  height: 52px;
  background: rgba(245, 130, 17, .2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #FDC900;
}

.about-value-icon i {
  width: 24px;
  height: 24px;
}

.about-value-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.about-value-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin: 0;
}

/*==========================================
        OUR PEOPLE
===========================================*/

.about-people-section {
  background: #fff;
  padding: 100px 0;
}

.about-people-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-people-media {
  position: relative;
}

.about-people-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 16px;
}

.about-people-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
}

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

.about-people-img-1 {
  grid-column: 1;
  grid-row: 1 / 3;
}

.about-people-img-2 {
  grid-column: 2;
  grid-row: 1;
}

.about-people-img-3 {
  grid-column: 2;
  grid-row: 2;
}

.about-people-stat-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #FDC900;
  color: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(245, 130, 17, .35);
}

.about-people-stat-card i {
  width: 28px;
  height: 28px;
  color: #fff;
}
/*==========================================
        COMMUNITY EMPOWERMENT
===========================================*/

.about-community-section {
  background: #f8f9fa;
  padding: 100px 0;
}

.about-community-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-community-image,
.about-community-content {
  flex: 1;
}

.about-community-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
}

.about-community-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*==========================================
        OUR HISTORY (TIMELINE)
===========================================*/

.about-milestones-section {
  background: #f8f9fa;
  padding: 100px 0;
}

.about-milestones-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.about-milestones-header .section-title {
  font-size: 38px;
  font-weight: 800;
  color: #14181b;
  margin: 12px 0 12px;
  line-height: 1.2;
}

.about-milestones-header .section-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.about-milestones-header .highlight {
  color: #FDC900;
}

.about-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.about-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #FDC900, rgba(245, 130, 17, .2));
  transform: translateX(-50%);
}

.about-timeline-item {
  position: relative;
  display: flex;
  margin-bottom: 40px;
}

.about-timeline-item:nth-child(odd) {
  justify-content: flex-start;
  padding-right: calc(50% + 30px);
}

.about-timeline-item:nth-child(even) {
  justify-content: flex-end;
  padding-left: calc(50% + 30px);
}

.about-timeline-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 16px;
  height: 16px;
  background: #FDC900;
  border: 3px solid #f8f9fa;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(245, 130, 17, .2);
  z-index: 2;
}

.about-timeline-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  transition: .35s;
}

.about-timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
}

.about-timeline-year {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #FDC900;
  background: rgba(245, 130, 17, .1);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.about-timeline-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #14181b;
  margin: 0 0 8px;
}

.about-timeline-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/*==========================================
        MANAGEMENT TEAM
===========================================*/

.about-team-section {
  background: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-team-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(245, 130, 17, .1);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  pointer-events: none;
}

.about-team-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.about-team-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(245, 130, 17, .1);
  color: #FDC900;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 20px;
}

.about-badge-icon i {
  width: 16px;
  height: 16px;
}

.about-team-title {
  font-size: 42px;
  font-weight: 800;
  color: #14181b;
  line-height: 1.15;
  margin: 0 0 16px;
}

.about-team-highlight {
  color: #FDC900;
}

.about-team-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-team-card {
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  transition: .35s;
}

.about-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.about-team-image {
  height: 280px;
  overflow: hidden;
}

.about-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.about-team-card:hover .about-team-image img {
  transform: scale(1.05);
}

.about-team-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}

.about-team-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #14181b;
  margin: 0 0 4px;
}

.about-team-text span {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

.about-team-arrow {
  width: 40px;
  height: 40px;
  background: rgba(245, 130, 17, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FDC900;
  text-decoration: none;
  transition: .35s;
}

.about-team-arrow:hover {
  background: #FDC900;
  color: #fff;
}

.about-team-arrow i {
  width: 18px;
  height: 18px;
}

/*==========================================
        GLOBAL PRESENCE
===========================================*/

.about-presence-section {
  background: #f8f9fa;
  padding: 100px 0;
}

.about-presence-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-presence-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(245, 130, 17, .1);
  color: #FDC900;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 20px;
}

.about-presence-badge i {
  width: 16px;
  height: 16px;
}

.about-presence-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: #14181b;
  margin: 0 0 16px;
}

.about-presence-title .highlight {
  color: #FDC900;
}

.about-presence-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-presence-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.about-presence-stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  transition: .35s;
}

.about-presence-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
}

.about-stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 130, 17, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #FDC900;
}

.about-stat-icon i {
  width: 20px;
  height: 20px;
}

.about-stat-number {
  font-size: 32px;
  font-weight: 900;
  color: #14181b;
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

/* Map */
.about-presence-map-wrapper {
  position: relative;
}

.about-presence-map-image {
  width: 100%;
  height: auto;
}

.about-map-marker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-marker-pulse {
  position: absolute;
  width: 24px;
  height: 24px;
  background: rgba(245, 130, 17, .3);
  border-radius: 50%;
  animation: aboutMarkerPulse 2s ease-in-out infinite;
}

.about-marker-dot {
  width: 10px;
  height: 10px;
  background: #FDC900;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.about-marker-label {
  font-size: 12px;
  font-weight: 700;
  color: #14181b;
  white-space: nowrap;
}

.about-map-marker.marker-1 {
  top: 28%;
  left: 42%;
}

.about-map-marker.marker-2 {
  top: 35%;
  left: 18%;
}

.about-map-marker.marker-3 {
  top: 55%;
  left: 40%;
}

@keyframes aboutMarkerPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .6;
  }

  50% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/*==========================================
        WHY CHOOSE US
===========================================*/

.about-why-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.about-why-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-why-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 13, 14, .93), rgba(11, 13, 14, .88));
}

.about-why-section .wrap {
  position: relative;
  z-index: 2;
}

.about-why-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.about-why-header .eyebrow {
  color: #FDC900;
}

.about-why-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin: 12px 0 16px;
  line-height: 1.2;
}

.about-why-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.about-why-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 32px 24px;
  transition: .35s;
}

.about-why-card:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-6px);
}

.about-why-icon {
  width: 52px;
  height: 52px;
  background: rgba(245, 130, 17, .2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #FDC900;
}

.about-why-icon i {
  width: 24px;
  height: 24px;
}

.about-why-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.about-why-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin: 0;
}

.about-why-commitment {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-why-commitment h3 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}

.about-why-commitment p {
  font-size: 16px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
  margin-bottom: 32px;
}

/*==========================================
        NEWSLETTER
===========================================*/

/*==========================================
        WHY CHOOSE US (imported from homepage)
===========================================*/

.about-why-imported {
  background: #fff;
  padding: 100px 0;
}

.about-why-imported-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-why-imported-media,
.about-why-imported-content {
  flex: 1;
}

.about-why-imported-wrapper {
  position: relative;
}

.about-why-imported-wrapper > img:first-child {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
  display: block;
}

.about-why-imported-floating {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 140px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
  border: 3px solid #f5b700;
}

.about-why-imported-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.about-why-imported-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-why-imported-num {
  font-size: 42px;
  font-weight: 900;
  color: #f5b700;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.about-why-imported-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0b0d0e;
  margin: 0 0 6px;
}

.about-why-imported-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.about-why-imported-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-why-imported-tags .product-line-tag {
  background: rgba(245, 183, 0, .1);
  color: #b38600;
  border: 1px solid rgba(245, 183, 0, .3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.about-newsletter {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.about-newsletter-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-newsletter-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-newsletter-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 13, 14, .9), rgba(11, 13, 14, .85));
}

.about-newsletter .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-newsletter-text h3 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.about-newsletter-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  margin: 0;
}

.about-newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.about-newsletter-form input {
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  width: 280px;
  outline: none;
}

.about-newsletter-form button {
  padding: 14px 28px;
  background: #FDC900;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: .35s;
  white-space: nowrap;
}

.about-newsletter-form button:hover {
  background: #df7206;
  transform: translateY(-2px);
}

.about-newsletter-msg {
  display: block;
  font-size: 14px;
  margin-top: 8px;
}

.about-newsletter-msg.success {
  color: #4caf50;
}

.about-newsletter-msg.error {
  color: #f44336;
}

/*==========================================
        RESPONSIVE
===========================================*/

@media (max-width: 992px) {

  .about-story-flex,
  .about-presence-flex,
  .about-people-flex {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-mv-flex {
    flex-direction: column;
  }

  .about-why-imported-flex {
    flex-direction: column;
  }

  .about-why-imported-floating {
    display: none;
  }

  .about-story-experience-box {
    bottom: -20px;
    left: 20px;
  }

  .about-story-floating-card {
    right: 20px;
  }

  .about-timeline-line {
    left: 20px;
  }

  .about-timeline-item:nth-child(odd),
  .about-timeline-item:nth-child(even) {
    padding-left: 50px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .about-timeline-dot {
    left: 20px;
  }

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

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

  .about-newsletter .wrap {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {

  .about-story-section,
  .about-values-banner,
  .about-milestones-section,
  .about-presence-section,
  .about-team-section,
  .about-people-section,
  .about-why-section,
  .about-why-imported {
    padding: 60px 0;
  }

  .about-story-title,
  .about-presence-title,
  .about-team-title {
    font-size: 32px;
  }

  .about-values-intro h2,
  .about-why-header h2 {
    font-size: 28px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-why-grid {
    grid-template-columns: 1fr;
  }

  .about-presence-stats {
    grid-template-columns: 1fr;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .about-newsletter-form input {
    width: 100%;
  }

  .about-why-imported-num {
    font-size: 32px;
    min-width: 40px;
  }

  .about-why-imported-list {
    gap: 20px;
  }
}



@media screen and (min-width: 200px) and (max-width: 600px) {
 
  .about-community-flex {
    flex-direction: column;
}

}