* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Calibri, sans-serif;
}

body {
  background-color: #87CEEB; /* Sky Blue */
  color: #333;
}

/* Header */
header {
  background-color: #800000; /* Dark Maroon */
  color: white;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 10px;
}

header h2 {
  color: #f5f5f5;
  text-align: center;
}

.header-line2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 50px;
  margin-right: 15px;
}

.site-title {
  font-size: 28px;
  font-weight: bold;
  color: #f5f5f5;
}

.header-line3 ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.header-line3 a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 20px;
}

.ad-unit {
  background-color: #ccc;
  width: 970px;
  height: 250px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tools-heading {
  font-size: 24px;
  font-weight: bold;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  padding: 20px;
}

.tool-card {
  background-color: orange;
  color: white;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
}

.tool-card h4 {
  margin-bottom: 8px;
}

.tool-card p {
  font-size: 14px;
}

/* Pagination */
.pagination {
  text-align: center;
  margin: 20px;
}

.pagination button {
  padding: 8px 16px;
  margin: 0 10px;
}

/* Testimonials */
.testimonials {
  background-color: lightblue;
  padding: 20px;
  overflow: hidden;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 15px;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: scrollTestimonials 60s linear infinite;
}

.testimonial {
  min-width: 200px;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
}

@keyframes scrollTestimonials {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* Footer */
footer {
  background-color: #800000;
  color: white;
  padding: 20px;
}

.footer-columns {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.footer-columns h3 {
  margin-bottom: 10px;
}

.footer-columns ul {
  list-style: none;
}

.footer-columns a {
  color: white;
  text-decoration: none;
}

.copyright {
  background-color: black;
  color: #f5f5f5;
  text-align: center;
  padding: 10px;
  font-size: 16pt;
  font-weight: bold;
}
