body {
  background-color: #141414;
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
}

header, main, footer {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

main {
  flex-grow: 1;
}

header {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.logo {
  max-width: 450px;
  width: 90%;
  height: auto;
  margin: 0 auto 1rem auto;
}

header p {
  font-size: 1.2rem;
  color: #cccccc;
  font-weight: 400;
  margin-top: 0;
}

main section {
  margin-bottom: 2rem;
}

main section p {
  margin-top: 1rem;
  font-size: 1.05rem;
}

a {
  color: #E5A04D;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease;
}

a:hover, a:focus {
  border-bottom: 2px solid #E5A04D;
}

footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 0.9rem;
  color: #888888;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-top: 2rem;
  color: #ffffff;
}

h3 {
  font-size: 1.4rem;
  color: #E5A04D;
  margin-top: 0;
  font-family: 'Playfair Display', serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background-color: #242424;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
