:root {
  --primary-color: #2d3e50;
  --secondary-color: #8ab6d6;
  --accent-color: #e0a899;
  --background-color: #f5f5f5;
  --text-color: #333;
  --footer-bg: #2d3e50;
  --footer-text: #fff;
  --cookie-bg: #fff;
  --cookie-border: #ccc;
  --header-height: 70px;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: white;
  color: #45a049;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

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

body {
  font-family: "Roboto", sans-serif;
  background-color: #f7f7f7;
  color: #333;
}

.header_div header {
  background: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #e0e0e0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  max-height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

nav ul li a {
  text-decoration: none;
  color: #2c3e50;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #007bff;
}

section iframe {
  margin-top: 70px;
  display: block;
  border: none;
}

.cookies-section {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 15px;
  z-index: 1000;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.cookies-div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookies-section p {
  margin: 0;
}

.cookies-section button {
  background-color: #4caf50;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookies-section button:hover {
  background-color: #45a049;
}

.footer {
  background-color: #2a3c48;
  color: #ffffff;
  padding: 40px 20px 20px;
  margin-top: 20px;
  margin-bottom: 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-contact h3,
.footer-hours h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-contact p,
.footer-hours p {
  margin-bottom: 5px;
  font-size: 14px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links ul li {
  margin: 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #c0d8e1;
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  background-color: #23303c;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  margin-top: 20px;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-container nav ul {
    flex-direction: column;
    margin-top: 10px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo,
  .footer-contact,
  .footer-hours {
    flex: none;
    width: 100%;
  }

  .footer-links ul {
    justify-content: center;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-section .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 600px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.5;
}

.hero-btn {
  background-color: #4caf50;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.hero-btn:hover {
  background-color: #45a049;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .hero-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

.about-section {
  background-color: #f7f7f7;
  padding: 60px 20px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.about-btn {
  background-color: #4caf50;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.about-btn:hover {
  background-color: #45a049;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
  .about-image img {
    max-width: 100%;
  }
  .about-text h2 {
    font-size: 1.8rem;
  }
  .about-text p {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  .about-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

.services-section {
  background-color: #f7f7f7;
  padding: 60px 20px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-container h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.services-container p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: scale(1.03);
}

.service-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-item h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .services-container h2 {
    font-size: 1.8rem;
  }
  .services-container p {
    font-size: 1rem;
  }
  .services-grid {
    gap: 20px;
  }
  .service-item h3 {
    font-size: 1.2rem;
  }
}

.pricing-section {
  background-color: #f7f7f7;
  padding: 60px 20px;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pricing-container h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.pricing-container p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.pricing-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.pricing-item:hover {
  transform: scale(1.03);
}

.pricing-item h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.price {
  font-size: 2rem;
  color: #4caf50;
  margin-bottom: 20px;
}

.pricing-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  display: inline-block;
}

.pricing-item ul li {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 10px;
}

.pricing-btn {
  background-color: #4caf50;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.pricing-btn:hover {
  background-color: #45a049;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .pricing-container h2 {
    font-size: 1.8rem;
  }
  .pricing-container p {
    font-size: 1rem;
  }
  .pricing-grid {
    gap: 20px;
  }
  .pricing-item {
    padding: 20px;
  }
  .pricing-item h3 {
    font-size: 1.3rem;
  }
  .price {
    font-size: 1.5rem;
  }
}

.testimonials-section {
  background-color: #f7f7f7;
  padding: 60px 20px;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-container h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.testimonials-container p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-item:hover {
  transform: scale(1.03);
}

.testimonial-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-item blockquote {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.client-name {
  font-size: 0.9rem;
  color: #333;
  font-weight: bold;
}

@media (max-width: 768px) {
  .testimonials-container h2 {
    font-size: 1.8rem;
  }
  .testimonials-container p {
    font-size: 1rem;
  }
  .testimonials-grid {
    gap: 20px;
  }
  .testimonial-item {
    padding: 20px;
  }
}

.parallax-section {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  perspective: 1px;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateZ(-1px) scale(2);
  transform-origin: center;
  z-index: 1;
}

.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallax-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.parallax-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.parallax-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .parallax-content h2 {
    font-size: 2rem;
  }
  .parallax-content p {
    font-size: 1rem;
  }
  .parallax-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

.contact-section {
  background-color: #f7f7f7;
  padding: 60px 20px;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-container h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.contact-container p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.input-group label {
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.input-group input,
.input-group textarea {
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 4px;
  padding: 12px;
  font-size: 1rem;
  color: #333;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: #4caf50;
}

.contact-btn {
  background-color: #4caf50;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-btn:hover {
  background-color: #45a049;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .contact-container h2 {
    font-size: 1.8rem;
  }
  .contact-container p {
    font-size: 1rem;
  }
}

.about-extended {
  background-color: #f7f7f7;
  padding: 60px 20px;
}

.about-extended-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-extended-container h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.about-extended-container > p {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.about-block {
  margin-bottom: 40px;
}

.about-block h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.about-block p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.about-team .team-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 20px;
}

.team-member {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: scale(1.03);
}

.team-member img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.team-member h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0;
}

.about-values ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.about-values ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #555;
}

.about-values ul li strong {
  color: #333;
}

.about-cta p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about-extended-container h2 {
    font-size: 1.8rem;
  }
  .about-extended-container > p {
    font-size: 1rem;
  }
  .about-block h3 {
    font-size: 1.3rem;
  }
  .team-member img {
    margin-bottom: 10px;
  }
  .team-member h4 {
    font-size: 1rem;
  }
  .team-member p {
    font-size: 0.85rem;
  }
  .about-values ul li {
    font-size: 0.95rem;
  }
  .about-cta p {
    font-size: 0.95rem;
  }
  .about-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

.services-extended {
  background-color: #f7f7f7;
  padding: 60px 20px;
}

.services-extended-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-extended-container h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.services-extended-container > p {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.service-block {
  margin-bottom: 40px;
}

.service-block h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.service-block p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 20px;
}

.service-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: scale(1.03);
}

.service-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-item h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 0;
}

.services-extended-cta p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.services-extended-btn {
  background-color: #4caf50;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.services-extended-btn:hover {
  background-color: #45a049;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .services-extended-container h2 {
    font-size: 1.8rem;
  }
  .services-extended-container > p {
    font-size: 1rem;
  }
  .service-block h3 {
    font-size: 1.3rem;
  }
  .service-item h4 {
    font-size: 1rem;
  }
  .service-item p {
    font-size: 0.9rem;
  }
  .services-extended-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}
