.cmyk-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.cmyk-inputs input {
  width: 100px;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

.cmyk-inputs button {
  background-color: #00b894;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cmyk-inputs button:hover {
  background-color: #019875;
}

.pantone-result {
  margin-top: 24px;
  font-size: 16px;
}
.content-section {
  padding: 2rem;
  font-family: Arial, sans-serif;
  max-width: 800px;
  margin: auto;
  line-height: 1.7;
}

.content-section h2 {
  color: #222;
  margin-top: 2rem;
  font-size: 1.5rem;
}

.content-section p {
  color: #444;
  font-size: 1rem;
  margin-top: 0.5rem;
}
/* Wrapper to center content on the page */
.tool-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

/* Optional: Style inputs */
.tool-wrapper input,
.tool-wrapper button {
  padding: 0.7rem 1rem;
  margin: 0.5rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Pantone result box */
.result-box {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  background: #f9f9f9;
  text-align: center;
  max-width: 400px;
}

/* Pantone color preview */
.color-swatch {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  margin: 1rem auto;
  border: 1px solid #ddd;
}



.tool-button {
  padding: 8px 16px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s ease;
}

.tool-button:hover {
  background-color: #e0e0e0;
}

.webp-info-section {
  max-width: 980px;              /* limits total width */
  margin: 40px auto;             /* centers the section */
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 15px;
}

.webp-info-section .info-box {
  flex: 1 1 280px;
  max-width: 300px;              /* narrower individual cards */
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.2s ease;
}

.webp-info-section .info-box:hover {
  transform: translateY(-5px);
}

.webp-info-section h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #333;
}

.webp-info-section p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.6;
}

