.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #34495e;
  color: #f39c12;
  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;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  background-color: #eef2f3;
  color: #333;
  line-height: 1.6;
}
.site-header {
  background-color: #2c3e50;
  padding: 20px 0;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.site-nav ul li a {
  color: #ecf0f1;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}
.site-nav ul li a:hover {
  color: #f1c40f;
}
.logo img {
  width: 80px;
}
.content-section {
  background-color: #ffffff;
}
.content-section iframe {
  width: 100%;
  height: 600px;
  border: 2px solid #bdc3c7;
  border-radius: 8px;
}
.cookies-section {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #34495e;
  color: #ecf0f1;
  padding: 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.cookies-div p {
  margin-right: 10px;
}
#acceptButton {
  background-color: #f1c40f;
  color: #2c3e50;
  border: none;
  padding: 10px 15px;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s;
}
#acceptButton:hover {
  background-color: #f39c12;
}
.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 40px 20px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.footer-hours,
.footer-contact,
.footer-logo {
  flex: 1;
  min-width: 250px;
}
.footer-hours h3,
.footer-contact h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #f1c40f;
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 5px;
}
.footer-hours p,
.footer-contact p {
  font-size: 1rem;
  margin: 5px 0;
  color: #bdc3c7;
}
.footer-logo img {
  width: 60px;
}
.footer-logo p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #ecf0f1;
}
.footer-links ul {
  list-style: none;
  text-align: center;
  margin-top: 20px;
}
.footer-links ul li {
  display: inline-block;
  margin: 0 10px;
}
.footer-links ul li a {
  color: #f1c40f;
  text-decoration: none;
  font-size: 1rem;
}
.footer-links ul li a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #bdc3c7;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ecf0f1;
  text-align: center;
  padding: 0 20px;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-overlay p {
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.scroll-down {
  font-size: 2.5rem;
  color: #ecf0f1;
  text-decoration: none;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(10px);
  }
  60% {
    transform: translateY(5px);
  }
}

.company-services {
  padding: 60px 20px;
  background-color: #f4f8fb;
  color: #333;
}

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

.company-info,
.services-info {
  flex: 1 1 400px;
}

.company-info h2,
.services-info h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #f39c12;
}

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

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

.services-info ul li {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.our-team {
  padding: 60px 20px;
  background-color: #f4f8fb;
  color: #333;
  text-align: center;
}

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

.our-team h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #f39c12;
}

.team-description {
  margin-bottom: 40px;
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.team-description p {
  margin-bottom: 20px;
}

.team-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.our-works {
  padding: 60px 20px;
  background-color: #f4f8fb;
  color: #333;
  text-align: center;
}
.our-works .container {
  max-width: 1200px;
  margin: 0 auto;
}
.our-works h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #f39c12;
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.work-item img {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  object-fit: cover;
}

.reviews {
  padding: 60px 20px;
  background-color: #f4f8fb;
  color: #333;
  text-align: center;
}

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

.reviews h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #f39c12;
}

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

.review-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(30, 144, 255, 0.3);
}

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

.review-item blockquote {
  font-style: italic;
  margin-bottom: 15px;
  color: #555;
}

.reviewer-name {
  font-weight: bold;
  font-size: 1.1rem;
  color: #f39c12;
}

.founders {
  padding: 60px 20px;
  background-color: #f4f8fb;
  color: #333;
  text-align: center;
}

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

.founders h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #f39c12;
}

.founder-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.founder-item.reverse {
  flex-direction: row-reverse;
}

.founder-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.founder-details {
  flex: 1;
  text-align: left;
}

.founder-details h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #f39c12;
}

.founder-details p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.contact-section {
  padding: 60px 20px;
  background-color: #eef2f3;
  color: #333;
}
.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.form-container,
.contact-info {
  flex: 1 1 400px;
  background-color: #fff;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.form-container h2,
.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f39c12;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.btn-submit {
  background-color: #f39c12;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-submit:hover {
  background-color: #f39c14;
}
.contact-info h3 {
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 10px;
}
.contact-info ul {
  list-style: disc;
  margin-left: 20px;
  font-size: 1rem;
}

.fullpage-contact {
  min-height: 100vh;
  padding: 40px 20px;
  background-color: #eef2f3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.fullpage-contact .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.form-column,
.info-column {
  flex: 1 1 400px;
  background-color: #fff;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.form-column h2,
.info-column h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f39c12;
}

.form-column p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.info-column p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.about-company {
  padding: 60px 20px;
  background-color: #f4f8fb;
  color: #333;
}

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

.about-company h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 40px;
  color: #f39c12;
}

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

.company-text {
  flex: 2;
  min-width: 300px;
  font-size: 1.2rem;
  line-height: 1.8;
}

.company-text p {
  margin-bottom: 20px;
}

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

.company-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.services-accordion {
  padding: 60px 20px;
  background-color: #f8f8f8;
  color: #333;
}
.services-accordion .container {
  max-width: 1200px;
  margin: 0 auto;
}
.services-accordion h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 40px;
  color: #f39c12;
}
.accordion details {
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 15px;
  padding: 0.5rem;
  background-color: #fff;
}
.accordion details summary {
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  padding: 0.5rem;
}
.accordion details[open] summary {
  color: #f39c12;
}
.accordion .accordion-content {
  padding: 1rem;
  border-top: 1px solid #ddd;
  font-size: 1.2rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .services-accordion h2 {
    font-size: 2rem;
  }
  .accordion details summary {
    font-size: 1.4rem;
  }
  .accordion .accordion-content {
    font-size: 1rem;
  }
}
