:root {
      --main_color: #ff8716;
      --p_color: #7b7b7b;
      --bg_color: #f3f3f3;
      --white_color: #fff;
      --color_heqding: #121416;
      --border_color: #e5e5e5d5;
      --sale_color: #E51A1A;
    }

    body {
      background-color: var(--bg_color);
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
    }
/* 
    .about_section {
      padding: 60px 20px;
      max-width: 1000px;
      margin: auto;
      background-color: var(--white_color);
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0,0,0,0.05);
    }

    .about_section h2 {
      color: var(--color_heqding);
      font-size: 32px;
      margin-bottom: 20px;
      text-align: center;
    }

    .about_section .section {
      margin-bottom: 40px;
    }

    .about_section .section h3 {
      color: var(--main_color);
      font-size: 24px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .about_section .section p {
      color: var(--p_color);
      font-size: 16px;
      line-height: 1.8;
    }

    .about_section .section ul {
      list-style: none;
      padding: 0;
    }

    .about_section .section ul li {
      margin-bottom: 10px;
      color: var(--p_color);
      font-size: 16px;
      padding-left: 20px;
      position: relative;
    }

    .about_section .section ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: var(--main_color);
    } */



    .about_exo {
  background-color: var(--bg_color);
  padding: 60px 20px;
}

.about_exo .main_title {
  text-align: center;
  font-size: 32px;
  color: var(--color_heqding);
  margin-bottom: 40px;
}

.about_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.about_item {
  background-color: var(--white_color);
  border: 1px solid var(--border_color);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.03);
}

.about_icon {
  font-size: 30px;
  color: var(--main_color);
  margin-bottom: 15px;
}

.about_item h3 {
  font-size: 20px;
  color: var(--color_heqding);
  margin-bottom: 10px;
}

.about_item p {
  font-size: 15px;
  color: var(--p_color);
  line-height: 1.8;
}
