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: #fbe9e7;
  color: #bf360c;
  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,
html {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background-color: #ffe0b2;
}

.header_div {
  background-color: #ff5722;
  padding: 15px 0;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

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

.logo img {
  max-height: 60px;
  border-radius: 50%;
  background-color: #ffffff;
  padding: 5px;
}

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

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

nav ul li a:hover {
  background-color: #d84315;
  transform: scale(1.1);
}

.cookies-section {
  background-color: #ffcc80;
  padding: 15px;
  text-align: center;
  border-top: 3px solid #ffab40;
}

.cookies-div p {
  display: inline;
  font-size: 1rem;
  color: #bf360c;
  margin-right: 10px;
}

.cookies-div button {
  background-color: #e65100;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

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

.footer_div {
  background-color: #d84315;
  padding: 30px 0px;
  color: #ffffff;
}

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

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

.footer-logo p {
  font-size: 0.9rem;
  margin-top: 10px;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav ul li a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #ffccbc;
}

.footer-contact p {
  font-size: 0.9rem;
  margin: 5px 0;
}

.footer-bottom {
  text-align: center;
  background-color: #bf360c;
  padding: 15px;
  font-size: 0.9rem;
  border-top: 3px solid #d84315;
}

.hero-section {
  background-color: #ff5722;
  color: #ffffff;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-container {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1 1 50%;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.hero-button {
  display: inline-block;
  background-color: #e65100;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s, transform 0.3s;
}

.hero-button:hover {
  background-color: #bf360c;
  transform: scale(1.05);
}

.hero-image {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-section {
  background-color: #ffccbc;
  color: #4e342e;
  padding: 60px 20px;
}

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

.about-image {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.about-text {
  flex: 1 1 55%;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-button {
  display: inline-block;
  background-color: #d84315;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s, transform 0.3s;
}

.about-button:hover {
  background-color: #bf360c;
  transform: scale(1.05);
}

.services-section {
  background-color: #fbe9e7;
  color: #4e342e;
  padding: 60px 20px;
}

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

.services-intro h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #bf360c;
}

.services-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
}

.service-item {
  flex: 1 1 30%;
  background-color: #ffccbc;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #d84315;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

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

.service-item ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}

.services-summary {
  margin-top: 40px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #6d4c41;
}

.testimonials-section {
  background-color: #ffcc80;
  color: #d84315;
  padding: 60px 20px;
  text-align: center;
  border-top: 3px solid #ff5722;
}

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

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

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

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

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

.testimonial-author {
  font-size: 1rem;
  font-weight: bold;
  color: #d84315;
}

.contact-form-section {
  background-color: #ffcc80;
  color: #d84315;
  padding: 60px 20px;
  text-align: center;
  border-top: 3px solid #ff5722;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffe0b2;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #e65100;
}

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

.contact-form input,
.contact-form textarea {
  width: 97%;
  padding: 10px;
  border: 2px solid #ff8a65;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #ffffff;
  color: #bf360c;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e65100;
  outline: none;
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

.contact-form button {
  background-color: #ff5722;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s;
}

.contact-form button:hover {
  background-color: #d84315;
  transform: scale(1.05);
}