html {
  scroll-behavior: smooth;
}

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

.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: #e67e22;
  color: white;
  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;
}

.cookies-div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 4px;
  background: #333333;
}

.cookies-div p {
  color: #d1d1d1;
  align-self: center;
  margin-right: 5px;
}

.cookies-div button {
  color: white;
  background-color: #e67e22;
  cursor: pointer;
}

.header_div {
  background: linear-gradient(90deg, #ff9800, #ffeb3b);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
}

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

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

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

nav ul li {
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #000000;
}

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

  nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  nav ul li a {
    width: 100%;
  }
}

.hero-section {
  padding: 0;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fffde7;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px #ff9800;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-button {
  background-color: #ffa726;
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-button:hover {
  background-color: #fb8c00;
  transform: translateY(-3px);
}

.services-section {
  padding: 160px 20px;
  text-align: center;
}

.services-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #e67e22;
  margin-bottom: 80px;
}

.services-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
}

.service-item {
  text-align: center;
}

.service-image-container {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 auto 60px;
  overflow: hidden;
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

.service-item:nth-child(2) .service-image-container {
  animation-duration: 5s;
}

.service-item:nth-child(3) .service-image-container {
  animation-duration: 3.5s;
}

.service-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  color: #7f8c8d;
}

.about-section {
  padding: 160px 20px;
  background-color: #fdfcf8;
  text-align: center;
}

.about-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #e67e22;
  margin-bottom: 40px;
}

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

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
  font-size: 1rem;
  color: #2c3e50;
  line-height: 1.8;
}

.about-image-container {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonials-section {
  padding: 160px 20px;
  background-color: #fdfcf8;
  text-align: center;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #e67e22;
  margin-bottom: 40px;
}

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

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

.testimonial-item {
  background-color: #fff;
  border: 1px solid #f0e6d8;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-author {
  font-size: 1.1rem;
  font-weight: bold;
  color: #e67e22;
}

.footer-section {
  background-color: #333333;
  color: #ffffff;
  padding: 40px 0px;
  font-family: "Arial", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-contact {
  text-align: center;
  line-height: 1.8;
}

.footer-contact h3 {
  color: #ffa726;
  margin-bottom: 10px;
}

.footer-contact p {
  font-size: 1rem;
  color: #f0f0f0;
}

.footer-bottom {
  background-color: #222222;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #ffffff;
  border-top: 1px solid #444444;
}

.footer-bottom a {
  text-decoration: none;
  color: #ffa726;
}

.footer-bottom a:hover {
  color: #ffcc80;
}

.contact-info-section {
  padding: 140px 20px;
  background-color: #ffffff;
}

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

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

.contact-info p {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #333;
}

.contact-info span {
  margin-right: 10px;
  font-size: 1.5rem;
}

.contact-form-section {
  padding: 140px 20px;
  background-color: #f9f9f9;
  margin-top: 50px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 95%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.submit-button {
  display: inline-block;
  background-color: #ffa726;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #ffb74d;
}

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

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

.about-us-title {
  font-size: 2.5rem;
  color: #ffa726;
  margin-bottom: 40px;
}

.about-us-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.about-us-text {
  flex: 1;
  max-width: 600px;
  color: #333333;
  font-size: 1.2rem;
  line-height: 1.8;
}

.about-us-image {
  flex: 1;
  max-width: 500px;
}

.about-us-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-us-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.about-us-item {
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.about-us-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-us-item h3 {
  font-size: 1.5rem;
  color: #ffa726;
  margin-bottom: 10px;
}

.about-us-item p {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
}

.service-section {
  padding: 60px 20px;
  background-color: #fff8e1;
}

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

.service-title {
  font-size: 2.5rem;
  color: #ffa726;
  margin-bottom: 20px;
}

.services-intro {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.services-content,
.services-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding-top: 40px;
}

.services-item {
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.services-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

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

.services-item p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.services-item ul {
  list-style-type: disc;
  padding-left: 20px;
}

.services-item ul li {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 5px;
}
