body {  margin: 0;  font-family: Georgia, serif;  background-color: #f7f3ed;  color: #000000;  line-height: 1.6;}
header {  background: linear-gradient(to right, #0b1f3a, #163d6b);  color: white;  text-align: center;  padding: 80px 20px;}
header h1 {  font-size: 48px;  margin-bottom: 10px;}
header p {  font-size: 20px;}
main {  max-width: 900px;  margin: auto;  padding: 40px 20px;}
section {  background: white;  padding: 30px;  margin-bottom: 30px;  border-radius: 14px;  box-shadow: 0 4px 10px rgba(0,0,0,0.08);}
h2 {  color: #163d6b;}h3 {  margin-bottom: 5px;}
a {  display: inline-block;  margin-top: 15px;  background-color: #163d6b;  color: white;  padding: 12px 20px;  border-radius: 8px;  text-decoration: none;}
a:hover {  background-color: #0b1f3a;}
footer {  text-align: center;  padding: 30px;  color: #666;}
nav {
  background-color: #08172b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
}

nav .logo {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 17px;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #d4af37;
}

@media (max-width: 700px) {
  header {
    padding: 50px 20px;
  }

  header h1 {
    font-size: 34px;
  }

  header p {
    font-size: 16px;
  }

  nav {
    flex-direction: column;
    gap: 15px;
    padding: 18px 20px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  main {
    padding: 25px 15px;
  }

  section {
    padding: 22px;
  }

  a {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

.services-page {
  max-width: 1500px;
  margin: 0 auto;
  padding: 70px 50px;
}

.service-row {
  display: grid;
  grid-template-columns: 160px 360px 1fr 120px;
  gap: 40px;
  align-items: center;
  margin-bottom: 70px;
}

.service-row img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
}

.service-row h2 {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  text-transform: uppercase;
  font-size: 32px;
  line-height: 1.1;
  color: black;
}

.service-row p {
  font-size: 17px;
  color: black;
}

.service-row a {
  color: black;
  font-weight: bold;
  text-decoration: underline;
  background: none;
  padding: 0;
  margin: 0;
}

.price {
  text-align: right;
  font-size: 16px;
}

.price small {
  display: block;
  color: #8bb7df;
  margin-top: 6px;
}

@media (max-width: 800px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .price {
    text-align: left;
  }
}
