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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: #1a1a1a;
  color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.contact-header {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

.contact-header a {
  color: #fff;
  text-decoration: none;
}

.hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.hero * {
	color: #fff;
}

h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

section {
  padding: 60px 0;
}

h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #1a1a1a;
}

h3 {
  font-size: 24px;
  margin-bottom: 15px;
  margin-top: 30px;
  color: #2c3e50;
}

p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.image-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.image-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.cta-section {
  background: #f8f9fa;
  text-align: center;
  padding: 60px 20px;
}

.cta-button {
  display: inline-block;
  background: #2c3e50;
  color: #fff;
  padding: 15px 40px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #34495e;
}

.price-list {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  margin: 30px 0;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.price-item:last-child {
  border-bottom: none;
}

.reviews {
  background: #fff;
  padding: 30px;
  border-left: 4px solid #2c3e50;
  margin: 20px 0;
}

.review {
  margin-bottom: 30px;
}

.review-stars {
  color: #f39c12;
  margin-bottom: 10px;
}

.review-text {
  font-style: italic;
  margin-bottom: 10px;
}

.review-author {
  font-weight: 600;
  color: #2c3e50;
}

.faq-item {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 5px;
}

.faq-question {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: #2c3e50;
}

footer {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

footer a {
  color: #fff;
  text-decoration: none;
}

.footer-info {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .image-grid {
    grid-template-columns: 1fr;
  }
  
  .price-item {
    flex-direction: column;
    gap: 10px;
  }
}
.bg-grey {
	background: #f8f9fa;
}