/* --- Calm Light Blue Theme --- */

body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  background: #eef5ff; /* very light blue background */
  color: #222;
}

/* HEADER */
header {
  background: #b3d4fc; /* soft sky blue */
  color: #073763; /* dark blue for readability */
  text-align: center;
  padding: 2em 1em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
  margin: 0;
  font-size: 2em;
}

header p {
  margin-top: 0.5em;
  font-size: 1.1em;
}

/* MAIN CONTENT */
main {
  max-width: 1000px;
  margin: 2em auto;
  padding: 1em;
}

/* GRID LAYOUT */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5em;
}

/* TOOL CARDS */
.tool {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.5em;
  border-top: 4px solid #a4c8f0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

/* DOWNLOAD BUTTONS */
.tool a {
  display: inline-block;
  margin-top: 1em;
  padding: 0.6em 1.2em;
  background: #a4c8f0; /* light blue button */
  color: #073763;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.tool a:hover {
  background: #cbe0ff;
  color: #002147;
}

/* DISCLAIMER SECTION AT BOTTOM */
.disclaimer {
  background: #eaf2ff;
  border-left: 5px solid #a4c8f0;
  padding: 1.5em;
  margin: 2em auto 1em auto;
  max-width: 900px;
  border-radius: 8px;
  color: #002147;
  font-size: 0.95em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.disclaimer h2 {
  margin-top: 0;
  color: #073763;
  font-size: 1.3em;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1em;
  background: #b3d4fc;
  color: #073763;
  margin-top: 1.5em;
  font-size: 0.9em;
}
