.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #F5F7FA;
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
}

.page-about__section {
  padding: 60px 0;
  background-color: #F5F7FA;
}

.page-about__section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-about__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #E53935;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-about__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF5A4F, #E53935);
  border-radius: 2px;
}

.page-about__paragraph {
  font-size: 17px;
  color: #333333;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  background: #F5F7FA;
  text-align: center;
}

.page-about__hero-image {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.page-about__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 300px;
}

.page-about__hero-content {
  max-width: 900px;
  padding: 0 15px 60px;
}

.page-about__main-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #E53935;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-about__intro-text {
  font-size: 18px;
  color: #333333;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(229, 57, 53, 0.4);
}

.page-about__cta-button--wide {
  min-width: 300px;
}

.page-about__vision-mission {
  padding-bottom: 30px;
}

.page-about__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__feature-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-about__feature-item:hover {
  transform: translateY(-5px);
}

.page-about__feature-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-about__feature-title {
  font-size: 24px;
  font-weight: bold;
  color: #E53935;
  margin-bottom: 15px;
}

.page-about__feature-description {
  font-size: 16px;
  color: #333333;
}

.page-about__history .page-about__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-about__history .page-about__text-block {
  flex: 1;
}

.page-about__history .page-about__image-block {
  flex: 1;
  min-width: 400px;
}

.page-about__history .page-about__image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-about__milestone-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-about__milestone-list li {
  font-size: 17px;
  color: #333333;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.page-about__milestone-list li::before {
  content: '✓';
  color: #E53935;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__value-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-about__value-item:hover {
  transform: translateY(-5px);
}

.page-about__value-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-about__value-title {
  font-size: 22px;
  font-weight: bold;
  color: #E53935;
  margin-bottom: 10px;
}

.page-about__value-description {
  font-size: 16px;
  color: #333333;
}

.page-about__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__product-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-about__product-card:hover {
  transform: translateY(-5px);
}

.page-about__product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-about__product-card h3 {
  padding: 20px 20px 0;
  margin: 0;
}

.page-about__product-card h3 a {
  font-size: 20px;
  font-weight: bold;
  color: #E53935;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.page-about__product-card h3 a:hover {
  color: #FF5A4F;
}

.page-about__product-description {
  font-size: 15px;
  color: #333333;
  padding: 10px 20px 20px;
  margin: 0;
  text-align: left;
}

.page-about__cta-container {
  text-align: center;
  margin-top: 50px;
}

.page-about__tech-security .page-about__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-about__tech-security .page-about__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-about__tech-security .page-about__text-block {
  flex: 1;
}

.page-about__tech-security .page-about__image-block {
  flex: 1;
  min-width: 400px;
}

.page-about__tech-security .page-about__image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-about__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-about__security-list li {
  font-size: 17px;
  color: #333333;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.page-about__security-list li::before {
  content: '🔒';
  color: #E53935;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-about__customer-support .page-about__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-about__customer-support .page-about__text-block {
  flex: 1;
}

.page-about__customer-support .page-about__image-block {
  flex: 1;
  min-width: 400px;
}

.page-about__customer-support .page-about__image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-about__support-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-about__support-list li {
  font-size: 17px;
  color: #333333;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.page-about__support-list li::before {
  content: '📞';
  color: #E53935;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-about__support-list li a {
  color: #E53935;
  text-decoration: none;
}