/* Base Styles */
:root {
  --primary: #2e8b57;
  --primary-dark: #1f6b42;
  --secondary: #f8f9fa;
  --text: #333;
  --light: #fff;
  --gray: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: var(--text);
  background-color: var(--light);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: var(--primary);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary);
  color: var(--light);
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

#cookie-banner {
  margin: auto;
}

/* Header Styles */
header {
  background-color: var(--light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("img/photo-1542838132-92c53300491e.avif");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  color: var(--light);
  text-align: center;
  margin-top: 70px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Content Blocks */
.content-block {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.content-block:nth-child(even) {
  flex-direction: row-reverse;
}

.content-image {
  flex: 1;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.content-image:hover img {
  transform: scale(1.05);
}

.content-text {
  flex: 1;
  padding: 0 40px;
}

.content-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary);
}

/* Sales Block */
.sales {
  background-color: var(--secondary);
  border-radius: 10px;
  padding: 50px;
  text-align: center;
}

.services {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.service {
  flex: 1;
  min-width: 300px;
  background-color: var(--light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-10px);
}

.service h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 20px 0;
}

/* Contact Section */
.contact-container {
  display: flex;
  gap: 40px;
}

.contact-form {
  flex: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.contact-info {
  flex: 1;
  background-color: var(--secondary);
  padding: 30px;
  border-radius: 10px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item i {
  margin-right: 10px;
  color: var(--primary);
  width: 20px;
}

/* Map Section */
.map-section {
  padding: 0;
  height: 500px;
}

#map {
  height: 100%;
  width: 100%;
}

/* Footer */
footer {
  background-color: #333;
  color: var(--light);
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 1;
  min-width: 300px;
  margin-bottom: 30px;
}

.footer-logo .logo-text {
  color: var(--light);
  margin-bottom: 15px;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.link-group {
  min-width: 200px;
  margin-bottom: 30px;
}

.link-group h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.link-group ul {
  list-style: none;
}

.link-group li {
  margin-bottom: 10px;
}

.link-group a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-group a:hover {
  color: var(--light);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #444;
  border-radius: 50%;
  color: var(--light);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  color: #ccc;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .content-block,
  .content-block:nth-child(even) {
    flex-direction: column;
  }

  .content-image,
  .content-text {
    width: 100%;
  }

  .content-text {
    padding: 20px 0;
  }

  .contact-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 50vh;
  }
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color: var(--light);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

  .sales {
    padding: 30px 20px;
  }

  .service {
    min-width: 100%;
  }
}
