body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(145deg, #f5f7fa, #e4ecf5);
  color: #111;
  padding-bottom: 4rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #6c5ce7;
  margin-top: 0.5rem;
  border-radius: 2px;
}

/* Input Styling */
input.form-control {
  padding: 0.75rem;
  border-radius: 0.6rem;
  font-size: 1rem;
  border: 1px solid #ced4da;
  background-color: #ffffff;
  transition: box-shadow 0.2s ease-in-out;
}
input.form-control:focus {
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.25);
}

/* Tool Cards */
.tool-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}
.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.tool-card h5 {
  margin-top: 0.75rem;
  font-weight: 700;
  color: #2d3436;
}
.tool-card p {
  font-size: 0.9rem;
  color: #636e72;
}
.tool-card img {
  max-height: 40px;
  width: auto;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.2));
}

/* Supplier Boxes */
.supplier-box {
  padding: 0.75rem 1.25rem;
  background: linear-gradient(to right, #74ebd5, #acb6e5);
  border-radius: 0.5rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

/* TikTok Embed Box */
.tiktok-box {
  padding: 1.5rem;
  background: #fff;
  border-radius: 0.75rem;
  text-align: center;
  border: 1px solid #ddd;
}

/* Forms */
form input,
form textarea,
form select {
  border-radius: 0.5rem;
  border: 1px solid #ced4da;
  padding: 0.75rem;
  font-size: 1rem;
  background-color: #fff;
}
form button {
  background-color: #6c5ce7;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}
form button:hover {
  background-color: #5a4bdc;
}

/* Footer */
footer {
  padding-top: 2rem;
  color: #888;
  font-size: 0.875rem;
  background: #f0f3f7;
  border-top: 1px solid #e0e0e0;
}
