body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #F5F5F5;
  color: #1F1F1F;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: #0A1A2F;
}

.nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

.logo {
  height: 40px;
}

.hero {
  position: relative;
  background: url('../images/hero.jpg') center/cover no-repeat;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  background: rgba(10,26,47,0.7);
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
  max-width: 800px;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

.btn-primary {
  background: #C8A45D;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

.content {
  padding: 60px 40px;
  text-align: center;
}

.testimonials {
  padding: 60px 40px;
  background: #ffffff;
  text-align: center;
}

.testimonial-card {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.cta {
  background: #0A1A2F;
  color: white;
  text-align: center;
  padding: 60px;
}