
/* Global Styles */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #0f1d2d;
  color: #f5f5f5;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #f5f5f5;
  text-align: center;
}

p, li {
  font-size: 1rem;
  line-height: 1.5;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

/* Header */
header {
  background-color: #0f1d2d;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #2e3b4e;
}

.logo {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #f5f5f5;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #c6a253;
}

/* Hero Section */
.hero {
  padding: 120px 20px 60px;
  text-align: center;
  background-color: #0f1d2d;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.btn {
  background-color: #c6a253;
  color: #0f1d2d;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #a88439;
}

/* Services */
.services {
  background-color: #1a2d3f;
  padding: 60px 20px;
}

.service-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 30px;
}

.service {
  text-align: center;
  margin: 20px;
}

.service i {
  font-size: 2rem;
  color: #c6a253;
  margin-bottom: 10px;
}

/* Info Section */
.info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 60px 20px;
  background-color: #f5f5f5;
  color: #0f1d2d;
}

.column {
  flex: 1;
  min-width: 300px;
  margin: 20px;
  max-width: 500px;
}

.column h3 {
  color: #0f1d2d;
}

.column ul {
  padding-left: 1.5rem;
}

/* Footer */
footer {
  background-color: #0f1d2d;
  text-align: center;
  padding: 40px 20px;
}

footer p {
  margin: 10px 0;
}
