/* Загальні стилі */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #fff;
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

/* Header */
.header {
  background-color: #000;
  padding: 100px 0;
  text-align: center;
}

.header h1 {
  font-size: 36px;
  color: #8A2BE2;
  margin-bottom: 20px;
}

.header p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #8A2BE2;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: #7a1eb5;
}

/* Послуги */
.services {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.services h2 {
  font-size: 30px;
  color: #8A2BE2;
  text-align: center;
  margin-bottom: 40px;
}

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

.service h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}

.service p {
  color: #bbb;
}

/* Про нас */
.about {
  padding: 80px 0;
}

.about h2 {
  font-size: 30px;
  color: #8A2BE2;
  text-align: center;
  margin-bottom: 40px;
}

.about ul {
  list-style: none;
  text-align: center;
}

.about li {
  font-size: 18px;
  color: #bbb;
  margin-bottom: 15px;
}

/* Footer */
.footer {
  background-color: #000;
  padding: 50px 0;
  text-align: center;
}

.footer p {
  font-size: 16px;
  color: #bbb;
  margin-bottom: 30px;
}

/* Мобільна адаптивність */
@media (max-width: 768px) {
  .header h1 {
    font-size: 28px;
  }

  .header p {
    font-size: 16px;
  }

  .service h3 {
    font-size: 20px;
  }

  .about h2 {
    font-size: 26px;
  }

  .about li {
    font-size: 16px;
  }
}
