/* About Page Styles */

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* About Hero Section */
.about-hero {
  padding: 200px 20px 60px 20px;
  background-color: black;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  overflow: hidden;
}

.about-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.about-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.about-hero p {
  font-size: 20px;
  color: #cdcdcd;
}

/* Mobile styles for Hero */
@media (max-width: 716px) {
  .about-hero {
    padding: 120px 20px 40px 20px;
    min-height: 300px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }
}

/* History Section */
.history-section {
  padding: 80px 20px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.history-section .container {
  max-width: 1200px;
}

.history-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #cdcdcd;
  margin-bottom: 40px;
}

.history-content {
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.history-content .text {
  flex: 1;
}

.history-content .image {
  flex: 0 0 300px;
  max-width: 300px;
}

.history-content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.history-content p {
  font-size: 1.3rem;
  color: #cdcdcd;
  margin-bottom: 24px;
  text-align: justify;
}

.history-content p:last-child {
  margin-bottom: 0;
}

/* Mobile styles for History Section */
@media (max-width: 716px) {
  .history-section {
    padding: 60px 20px;
  }

  .history-section h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .history-content {
    flex-direction: column;
    gap: 30px;
  }

  .history-content .image {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .history-content .image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
  }

  .history-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    text-align: left;
  }
}

/* Factory Section */
.factory-section {
  padding: 80px 20px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: #1a1a1a;
}

.factory-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.factory-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #cdcdcd;
  margin-bottom: 40px;
}

.factory-content {
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.factory-content .text {
  flex: 1;
}

.factory-content .image {
  flex: 0 0 300px;
  max-width: 300px;
  order: -1;
}

.factory-content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.factory-content p {
  font-size: 1.3rem;
  color: #cdcdcd;
  margin-bottom: 24px;
  text-align: justify;
}

.factory-content p:last-child {
  margin-bottom: 0;
}

/* Mobile styles for Factory Section */
@media (max-width: 716px) {
  .factory-section {
    padding: 60px 20px;
  }

  .factory-section h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .factory-content {
    flex-direction: column;
    gap: 30px;
  }

  .factory-content .image {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    order: 0;
  }

  .factory-content .image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
  }

  .factory-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    text-align: left;
  }
}

/* Services Section */
.services-section {
  padding: 80px 20px;
}

.services-section .container {
  max-width: 1200px;
}

.services-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #cdcdcd;
  margin-bottom: 40px;
}

.services-content {
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.services-content .text {
  flex: 1;
}

.services-content .image {
  flex: 0 0 300px;
  max-width: 300px;
}

.services-content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.services-content p {
  font-size: 1.3rem;
  color: #cdcdcd;
  margin-bottom: 24px;
  text-align: justify;
}

.services-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-content ul li {
  font-size: 1.3rem;
  color: #cdcdcd;
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
  text-align: justify;
}

.services-content ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #cdcdcd;
  font-weight: 600;
  font-size: 1.5rem;
}

.services-content ul li:last-child {
  margin-bottom: 0;
}

/* Mobile styles for Services Section */
@media (max-width: 716px) {
  .services-section {
    padding: 60px 20px;
  }

  .services-section h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .services-content {
    flex-direction: column;
    gap: 30px;
  }

  .services-content .image {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .services-content .image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
  }

  .services-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    text-align: left;
  }

  .services-content ul li {
    font-size: 1.25rem;
    line-height: 1.7;
    text-align: left;
  }
}

/* Strength Section */
.strength-section {
  padding: 80px 20px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: #1a1a1a;
}

.strength-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.strength-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #cdcdcd;
  margin-bottom: 40px;
}

.strength-content {
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.strength-content .text {
  flex: 1;
}

.strength-content .image {
  flex: 0 0 300px;
  max-width: 300px;
  order: -1;
}

.strength-content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.strength-content p {
  font-size: 1.3rem;
  color: #cdcdcd;
  margin-bottom: 24px;
  text-align: justify;
}

.strength-content p:last-child {
  margin-bottom: 0;
}

/* Mobile styles for Strength Section */
@media (max-width: 716px) {
  .strength-section {
    padding: 60px 20px;
  }

  .strength-section h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .strength-content {
    flex-direction: column;
    gap: 30px;
  }

  .strength-content .image {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    order: 0;
  }

  .strength-content .image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
  }

  .strength-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    text-align: left;
  }
}
