* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background-color: #f8f8f8;
  line-height: 1.6;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img {
  height: 80px;
}

.logo span {
  font-weight: bold;
  font-size: 1.2rem;
  color: #0066cc;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #003366;
  font-weight: 500;
}

.hero {
  background: url('images/cemetery-hero.jpg') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.5rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-top: 10px;
}

main section {
  margin: 3rem 0;
}

h2 {
  color: #003366;
  margin-bottom: 1rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input, form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

form button {
  padding: 0.75rem;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

form button:hover {
  background-color: #004d99;
}

.map-placeholder {
  flex: 1;
  background-color: #eaeaea;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  text-align: center;
  border-radius: 5px;
}

footer {
  background-color: #003366;
  color: white;
  padding: 2rem 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer h4 {
  margin-bottom: 0.5rem;
}

footer ul {
  list-style: none;
}

footer ul li a {
  color: white;
  text-decoration: none;
}

.footer-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.pricing ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

.pricing li {
  margin-bottom: 0.5rem;
}

.date {
      font-style: italic;
      color: #666;
}