:root {
      --text-price-all-primary: #2a6496;
      --text-price-all-secondary: #4CAF50;
      --text-price-all-text: #333;
      --text-price-all-bg: #fff;
      --text-price-all-border: #d1e3f8;
      --text-price-all-link: #1a73e8;
    }

  

    .face_title {
      font-size: 1.8rem;
      color: var(--text-price-all-primary);
      margin-bottom: 25px;
      font-weight: 700;
      text-align: center;
    }

    .face_team-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-bottom: 30px;
    }

    .face_team-member {
      width: 320px;
      padding: 25px;
      background: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      text-align: center;
      transition: all 0.3s ease;
    }

    .face_team-member:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .face_member-photo {
      width: 250px;
      height: 250px;
      border-radius: 6%;
      object-fit: cover;
      margin: 0 auto 15px;
      border: 3px solid var(--text-price-all-primary);
    }

    .face_member-name {
      font-size: 1.3rem;
      color: var(--text-price-all-primary);
      margin-top: 0;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .face_member-info {
      font-size: 1rem;
      color: var(--text-price-all-text);
      line-height: 1.6;
    }

    .face_member-info p {
      margin: 0.8rem 0;
    }

    .face_stats {
      background: #f9f9f9;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      margin-top: 40px;
	  max-width: 1200px;
    }

    .face_stats h2 {
      color: var(--text-price-all-primary);
      text-align: center;
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .face_stats p {
      font-size: 1.1rem;
      color: var(--text-price-all-text);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .text_price_all_link {
      color: var(--text-price-all-link);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
    }

    .text_price_all_link:hover {
      color: var(--text-price-all-primary);
      text-decoration: underline;
    }

    .text_price_all_list {
      padding-left: 20px;
      margin: 20px 0;
    }

    .text_price_all_list li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 12px;
      list-style-type: none;
      color: var(--text-price-all-text);
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .text_price_all_list li:before {
      content: "";
      position: absolute;
      left: 0;
      top: 10px;
      width: 10px;
      height: 10px;
      background-color: var(--text-price-all-secondary);
      border-radius: 50%;
    }

    /* Mobile styles */
    @media (max-width: 2768px) {
      .face_container {
        padding: 25px 20px;
      }
      
      .face_title {
        font-size: 1.6rem;
      }
      
      .face_team-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }
      
      .face_team-member {
        width: 100%;
        max-width: 274px;
        padding: 20px;
      }
      
      .face_member-photo {
        width: 200px;
        height: 200px;
      }
      
      .face_stats {
        padding: 25px 20px;
      }
      
      .text_price_all_list li {
        font-size: 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .face_container {
        padding: 20px 15px;
      }
      
      .face_title {
        font-size: 1.4rem;
      }
      
      .text_price_all_list li {
        padding-left: 20px;
        margin-bottom: 10px;
      }
    }