
/* Header Styles */
header {
  position: relative;
  overflow: hidden;
}
.header-img {
  width: 100%;
  height: 433px;
  object-fit: cover;
}
.lang-switch {
  position: absolute;
  top: 20px;
  left: 20px;
}
.lang-switch a {
  background: #F5C800;
  color: #000;
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.25rem;
  display: inline-block;
}

/* styles.css */

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

body {
  font-family: 'Montserrat', sans-serif;
  background: #fafafa;
  background-size: cover;
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Header */
header {
  position: relative;
  overflow: hidden;
}
.header-img {
  width: 100%;
  height: 433px;
  object-fit: cover;
}
.phone {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-weight: 900;
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h1, h2 {
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #333;
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: #333;
}
.italic {
  font-style: italic;
}

/* Lists */
ul {
  list-style: none;
  padding-left: 1rem;
}
ul li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  font-size: 1.25rem;
}
ul li::before {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 0.6rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #000;
}

/* Images section */
.description-images {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}
.description-images img {
  width: 48%;
  border-radius: 0.5rem;
}

/* Reviews section */
#reviews {
  background: #f9f9f9;
  padding: 2rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
}
.btn-review, .btn-contact {
  display: inline-block;
  background: #F5C800;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  margin-right: 1rem;
}

/* Prices tables */
.prices-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 1.25rem;
}
.prices-table th, .prices-table td {
  border: 1px solid #ddd;
  padding: 0.75rem;
  text-align: left;
}
.prices-table th {
  background: #F5C800;
  color: #000;
}

/* Footer contact buttons */
.footer-buttons {
  margin: 2rem 0;
}
.footer-buttons .btn-contact {
  margin-right: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .header-img {
    height: 318px;
    object-position: center -15px;
  
  .footer-buttons .btn-contact {
    width: 70%;
  }

}
  .phone {
    font-size: 1.2rem;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.6rem;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  p, ul li {
    font-size: 1.125rem;
  }
  .description-images {
    flex-direction: column;
  }
  .description-images img {
    width: 100%;
  }
  .prices-table th, .prices-table td {
    font-size: 1rem;
  }
}

/* Mobile version: center reviews and vertical footer buttons */
@media (max-width: 768px) {
  #reviews {
    text-align: center;
  
  .footer-buttons .btn-contact {
    width: 70%;
  }

}
  #reviews .btn-review {
    display: inline-block;
    margin: 1rem auto;
  }
  .footer-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-buttons .btn-contact {
    margin-bottom: 1rem;
  }
}

/* Equal width for footer contact buttons */
.footer-buttons .btn-contact { text-align: center; }

/* Discounts section spacing */
.discounts {
  margin: 2rem 0;
}
.discounts p {
  margin-bottom: 1rem;
}
