/* Reset + Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

a {
  color: #0057b8;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background-color: #b4b4b4; /* medium grey */
  height: 150px; /* or whatever height you want for the header */
  display: flex;
  align-items: center; /* vertically center contents */
}

.site-header .logo img {
  height: 100%;  /* fill the header vertically */
  width: auto;   /* keep aspect ratio */
}
.logo a {
  color: #ccc;
  font-size: 1.8rem;
  font-weight: bold;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.main-nav a {
  color: #fff;
  padding: 0.5rem 1rem;
}

.main-nav a.active,
.main-nav a:hover {
  background: #0057b8;
  border-radius: 4px;
}

/* Hero Section */
.hero {
  background: url('images/hero-bg.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: #0057b8;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  display: inline-block;
  font-weight: bold;
}

/* Features Section */
.features {
  padding: 4rem 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.grid-3 div {
  text-align: center;
}

.grid-3 img {
  display: block;
  margin: 0 auto 1rem auto;
  max-width: 100%;
  height: auto;
}

.features h3 {
  margin-top: 1rem;
  font-size: 1.4rem;
}

/* Footer */
.site-footer {
  background: #222;
  color: #aaa;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-links a {
  color: #aaa;
}

.footer-links a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h2 {
    font-size: 2rem;
  }
}
.centerpiece {
  padding: 2rem 0;
  background: #f9f9f9;
  text-align: center;
}

.center-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
