* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  color: #333;
  background-color: #f9f9f9;
  max-width: 1920px;
  margin: 0 auto;
}

.container {
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: fixed;
  width: 100%;
  max-width: 1920px;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #76bc21;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #76bc21;
}

.contact-header {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.contact-row {
  display: flex;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
}

.contact-item a {
  color: #76bc21;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #5a8c1a;
}

.contact-icon {
  width: 20px;
  height: 20px;
  filter: invert(45%) sepia(85%) saturate(400%) hue-rotate(65deg) brightness(95%) contrast(90%);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s;
}

.burger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.burger.toggle span:nth-child(2) {
  opacity: 0;
}

.burger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Banner */
.banner {
  width: 100%;
  max-width: 1920px;
  height: 700px;
  background: url('banner.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: end;
  justify-content: center;
  color: #fff;
  text-align: center;
  margin-top: 60px;
}

.banner-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
  max-width: 1200px;
  width: 100%;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 24px;
  font-weight: 400;
}

/* Teasers */
.teasers {
  padding: 60px 0;
  background-color: #fff;
}

.teasers h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  color: #76bc21;
  font-weight: 700;
}

.teasers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.teaser-item {
  text-align: center;
  padding: 20px;
  background-color: #f8f9f8;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.teaser-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.teaser-item h3 {
  font-size: 22px;
  color: #76bc21;
  margin-bottom: 10px;
}

.teaser-item p {
  font-size: 16px;
  color: #555;
}

/* Alternating Blocks */
.alternating {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.alternating h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  color: #76bc21;
  font-weight: 700;
}

.alternating-block {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

.alternating-block .text, .alternating-block .image {
  flex: 1;
  max-width: 940px;
}

.alternating-block .image {
  display: flex;
}

.alternating-block:nth-child(1) .image, .alternating-block:nth-child(3) .image {
  justify-content: flex-end;
}

.alternating-block:nth-child(2) .image {
  justify-content: flex-start;
}

.alternating-block .image img {
  max-width: 100%;
  height: 500px;
  object-fit: cover;
  border: 4px solid #76bc21;
  border-radius: 8px;
}

.alternating-block .text {
  padding: 20px;
}

.alternating-block .text h3 {
  font-size: 24px;
  color: #76bc21;
  margin-bottom: 15px;
}

.alternating-block .text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Gallery */
.gallery {
  padding: 60px 0;
  background-color: #fff;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  color: #76bc21;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

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

.gallery-item:hover {
  transform: scale(1.05);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* Specs */
.specs {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.specs h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  color: #76bc21;
  font-weight: 700;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.spec-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.spec-label {
  font-weight: 700;
  color: #333;
  font-size: 16px;
}

.spec-value {
  color: #555;
  font-size: 16px;
  text-align: right;
}

/* Contacts */
.contacts {
  padding: 60px 0;
  background-color: #fff;
}

.contacts h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  color: #76bc21;
  font-weight: 700;
}

.contacts-grid {
  display: flex;
  gap: 20px;
}

.map, .contacts-info {
  flex: 1;
  max-width: 940px;
}

.map iframe {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background-color: #f8f9f8;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 24px;
  height: 24px;
  filter: invert(45%) sepia(85%) saturate(400%) hue-rotate(65deg) brightness(95%) contrast(90%);
}

.contact-item p {
  font-size: 16px;
  color: #555;
}

.contact-item a {
  color: #76bc21;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #5a8c1a;
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .logo {
    font-size: 24px;
  }

  .contact-header {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
    margin-top: 5px;
  }

  .contact-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .contact-header .contact-phone, .contact-header .contact-email {
    width: auto;
  }

  .contact-header .contact-address {
    align-self: center;
    margin-top: 5px;
  }

  .contact-item {
    font-size: 12px;
  }

  .contact-icon {
    width: 16px;
    height: 16px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
    position: absolute;
    top: 10px;
    right: 15px;
  }

  .banner {
    height: 500px;
    margin-top: 110px;
  }

  .banner-content h1 {
    font-size: 32px;
  }

  .banner-content p {
    font-size: 18px;
  }

  .teasers-grid {
    grid-template-columns: 1fr;
  }

  .alternating-block {
    flex-direction: column;
  }

  .alternating-block .text, .alternating-block .image {
    max-width: 100%;
  }

  .alternating-block .image img {
    height: 300px;
  }

  .alternating-block .text {
    padding: 10px;
  }

  .alternating-block .text h3 {
    font-size: 20px;
  }

  .alternating-block .text p {
    font-size: 14px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img {
    height: 170px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .contacts-grid {
    flex-direction: column;
  }

  .map, .contacts-info {
    max-width: 100%;
  }

  .contact-item p {
    font-size: 14px;
  }

  .contact-icon {
    width: 20px;
    height: 20px;
  }
}