body {
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
}

.converter-section {
  padding: 60px 20px;
  max-width: 700px;
  margin: auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.converter-section h1 {
  font-size: 2.2rem;
  color: #2563eb;
  margin-bottom: 10px;
}

.converter-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
}

label, select, input, button {
  font-size: 1rem;
  margin: 10px 5px;
}

.converter-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.converter-box input,
.converter-box select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  min-width: 120px;
}

button {
  background: #2563eb;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

button:hover {
  background: #1e4ed8;
}

.conversion-result {
  font-size: 1.2rem;
  color: #2563eb;
  margin-top: 20px;
}

.blog-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.blog-section h2 {
  font-size: 1.8rem;
  color: #2563eb;
  margin-bottom: 15px;
}

.blog-section p, .blog-section ul {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
  .converter-box {
    flex-direction: column;
    align-items: center;
  }

  .converter-box input,
  .converter-box select {
    width: 100%;
    max-width: 300px;
  }

  .converter-section {
    padding: 40px 15px;
  }
}
