.spec-box {
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(55, 94, 83, 0.08);
}

.spec-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(55, 94, 83, 0.15);
}

.spec-box-header {
  padding: 20px 25px;
}

.spec-box-header h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.spec-box-body {
  padding: 25px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e8f2ee;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-key {
  font-weight: 600;
  flex: 1;
}

.spec-value {
  flex: 1;
  text-align: right;
  font-weight: 500;
}

.cert-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 5px;
}

@media (max-width: 768px) {
  .spec-row {
    flex-direction: column;
    padding: 10px 0;
  }

  .spec-value {
    text-align: left;
    margin-top: 5px;
  }

  .cert-tag {
    margin-top: 5px;
    margin-right: 5px;
    margin-left: 0;
  }

  .spec-box-header {
    padding: 15px 20px;
  }

  .spec-box-body {
    padding: 20px;
  }
}

.usage-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #e8f2ee;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(55, 94, 83, 0.05);
  height: 100%;
}

.usage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(55, 94, 83, 0.1);
  border-color: #375e53;
}

.usage-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #375e53 0%, #2a4a3f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

.usage-card h4 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.usage-card p {
  color: #546e7a;
  margin-bottom: 0;
}

.target-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #e8f2ee;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(55, 94, 83, 0.05);
  height: 100%;
}

.target-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(55, 94, 83, 0.1);
  border-color: #375e53;
}

.target-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #375e53 0%, #2a4a3f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

.target-card h4 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.target-card p {
  color: #546e7a;
  margin-bottom: 0;
}

.app-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #e8f2ee;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(55, 94, 83, 0.05);
}

.app-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(55, 94, 83, 0.1);
  border-color: #375e53;
}

.app-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #375e53 0%, #2a4a3f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

.app-card h4 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.app-card p {
  color: #546e7a;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .detail .info {
    display: flex;
    justify-content: flex-start !important; 
  }
}

@media (max-width: 768px) {
    #subheader {
        padding: 75px 0 40px 0 !important;
    }
}
