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: #8e44ad;
  color: #fff;
  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;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

.header_div header {
  background-color: #ffffff;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

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

.logo img {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #8e44ad;
}

section > iframe {
  margin-top: 80px;
  width: 100%;
  height: calc(100vh - 80px);
  border: none;
}

.cookies-section {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #eee;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

.cookies-div p {
  margin: 0;
  font-size: 14px;
  color: #777;
}

.cookies-div button {
  background-color: #8e44ad;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookies-div button:hover {
  background-color: #732d91;
}

.footer {
  background-color: #ffffff;
  border-top: 1px solid #eee;
  padding: 40px 20px;
  margin-top: 40px;
}

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

.footer-logo,
.footer-contact,
.footer-hours {
  flex: 1;
  min-width: 200px;
  margin: 10px 0;
}

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

.footer-logo p {
  margin-top: 10px;
  color: #555;
}

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

.footer-contact p,
.footer-hours p {
  margin: 4px 0;
  color: #666;
}

.footer-links {
  max-width: 1200px;
  margin: 20px auto;
  text-align: center;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  display: inline-flex;
  gap: 20px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #8e44ad;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 12px;
  color: #aaa;
}

a,
button {
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #fdfdfd;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #333;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.hero-btn {
  background-color: #8e44ad;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.hero-btn:hover {
  background-color: #732d91;
}

.about {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.about-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}
.about-content {
  flex: 1;
}
.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}
.about-content p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #555;
  line-height: 1.8;
}

.team {
  padding: 60px 20px;
  background-color: #fff;
}
.team-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.team-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}
.team-container p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}
.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.team-member {
  width: 300px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.team-member:hover {
  transform: translateY(-5px);
}
.team-member img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 15px;
}
.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}
.team-member p {
  font-size: 1rem;
  color: #777;
}

.services {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.services-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}
.services-container p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}
.services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.service-card {
  width: 300px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 15px;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}
.service-card p {
  font-size: 1rem;
  color: #777;
}

.gallery {
  padding: 60px 20px;
  background-color: #fff;
}
.gallery-container {
  position: relative;
  max-width: 1200px;
  height: 500px;
  margin: 0 auto;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active {
  opacity: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(142, 68, 173, 0.8);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.prev:hover,
.next:hover {
  background-color: rgba(115, 45, 145, 0.8);
}
.prev {
  left: 20px;
}
.next {
  right: 20px;
}

.advantages {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
.advantages-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.advantages-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}
.advantages-container p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}
.advantages-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.advantage-card {
  width: 300px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.advantage-card:hover {
  transform: translateY(-5px);
}
.advantage-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}
.advantage-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}
.advantage-card p {
  font-size: 1rem;
  color: #777;
}

.contact {
  padding: 60px 20px;
  background-color: #fff;
}
.contact-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}
.contact-container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-container input,
.contact-container textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.contact-container input:focus,
.contact-container textarea:focus {
  border-color: #8e44ad;
  outline: none;
}
.contact-container button {
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  background-color: #8e44ad;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-container button:hover {
  background-color: #732d91;
}

.fullwidth-image {
  width: 100%;
  margin: 0;
  padding: 0;
}
.fullwidth-image img {
  display: block;
  width: 100%;
  height: 60vh;
  object-fit: cover;
}