body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #fff;
  color: #222;
}

/* HERO */
.hero {
  background: black;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: orange;
  color: white;
  padding: 15px 30px;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background: darkorange;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.feature {
  width: 250px;
  text-align: center;
  margin: 15px;
}

/* CATALOG */
.catalog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product {
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  background: #fafafa;
}

.product img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.price {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 10px 0;
  color: goldenrod;
}

/* COMPARISON TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table, th, td {
  border: 1px solid #ccc;
}

th, td {
  padding: 15px;
  text-align: center;
}

th {
  background: black;
  color: white;
}

/* REVIEWS */
.reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.review {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
  width: 280px;
  background: #fafafa;
}

/* CTA SECTION */
.cta {
  background: #111;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}

form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

form input, form select, form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* FOOTER */
footer {
  background: #000;
  color: #d4af37; /* золотий */
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

.footer-container h3, 
.footer-container h4 {
  margin-bottom: 10px;
}

.footer-container a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-container a:hover {
  color: #d4af37;
}
