body {font-size: 16px;}
.ser_yb_consys {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8faff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,92,185,0.08);
  transition: transform 0.3s ease;
}

.step {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px dashed #eee;
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  width: 32px;
  height: 32px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
}

.step-content h5 {
  color: #2c3e50;
  margin-bottom: 8px;
}

.step-content p {
	font-size: 1.2rem;
  line-height: 1.6;
}

.ser_yb_consys:hover {
  transform: translateY(-3px);
}

h1.main-title {
	font-size: 2.5rem;
	text-align: center;
	padding: 1rem;
	border-bottom: 3px solid #666; 
	margin-bottom: 1rem;
}

.highlight-box2{
	font-size: 1.8rem;
	line-height: 1.6;
}

.highlight-box3{
	color:#F00;
	
}


.highlight-box{
	font-size: 1.8rem;
	line-height: 1.6;
}

h2.section-title {
	font-size: 2.2rem;
	text-align: center;
	padding: 1rem;
	border-bottom: 3px solid #666; 
	margin-bottom: 1rem;
}
.section-title {
  position: relative;
  color: #1a345e;
  font-size: 1.6rem;
  padding-left: 32px;
  margin: 0 0 1.5rem 0;
}

.section-title span[class^="icon-"] {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.icon-arrow { background: url('data:image/svg+xml,...') } 
.icon-warning { background: url('data:image/svg+xml,...') }

/
.case-list li {
  padding: 12px 20px;
  font-size: 1.4rem;
  margin: 8px 0;
  background: #fff;
  border-left: 4px solid #006cff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/
.comparison-table {
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: center;
  border: 1px solid #e3edf7;
}

.comparison-table th {
  background: #1a345e;
  color: white;
  font-weight: 500;
}

.highlight {
  color: #006cff;
  font-weight: 600;
}


.formula-box {
  background: linear-gradient(135deg, #f6faff 0%, #e8f3ff 100%);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #d3e6ff;
}

.formula-box p {
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  color: #1a345e;
  margin: 0 0 1rem 0;
}

.example {
  background: rgba(255,255,255,0.9);
  padding: 1rem;
  border-radius: 6px;
}


.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.advantage-item {
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  box-shadow: 0 6px 20px rgba(0,92,185,0.1);
  transform: translateY(-3px);
}
 table {
            width: 100%;
            margin: 20px auto;
            border-collapse: collapse;
            font-family: Arial, sans-serif;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
			font-size:16px;
        }
        th, td {
            padding: 12px 15px;
            text-align: left;
        }
        th {
            background-color: #4CAF50;
            color: white;
            font-weight: bold;
        }
        tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        tr:hover {
            background-color: #ddd;
        }
        td {
            border-bottom: 1px solid #ddd;
        }