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

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background-color: #00bcd4;
  color: white;
}
.btn-primary:hover {
  background-color: #008fa1;
}
.btn-secondary {
  background-color: #f5f5f5;
  color: #333;
}
.btn-secondary:hover {
  background-color: gainsboro;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background-color: white;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px;
  display: none;
}
.cookie-popup.show {
  display: block;
  -webkit-animation: fadeIn 0.5s ease forwards;
          animation: fadeIn 0.5s ease forwards;
}
.cookie-popup .cookie-content {
  text-align: center;
}
.cookie-popup .cookie-content .cookie-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
}
.cookie-popup .cookie-content .cookie-icon img {
  width: 100%;
  height: auto;
}
.cookie-popup .cookie-content h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.cookie-popup .cookie-content p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.cookie-popup .cookie-content .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.cookie-popup .cookie-content .cookie-buttons .btn {
  width: 100%;
}
@media (min-width: 480px) {
  .cookie-popup .cookie-content .cookie-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .cookie-popup .cookie-content .cookie-buttons .btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.header {
  padding: 20px 0;
  background-color: white;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .logo {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.header .nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.header .nav ul li a {
  font-size: 14px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header .nav ul li a:hover {
  color: #00bcd4;
}

.hero {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.hero .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 40px;
}
@media (min-width: 768px) {
  .hero .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.hero .hero-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hero .hero-content h1 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero .hero-content p {
  margin-bottom: 30px;
  color: #666;
}
.hero .hero-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hero .hero-image img {
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.why-us {
  padding: 60px 0;
}
.why-us h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.why-us .why-us-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .why-us .why-us-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.why-us .why-us-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.why-us .why-us-text p {
  margin-bottom: 20px;
  color: #666;
}
.why-us .why-us-text p:last-child {
  margin-bottom: 0;
}
.why-us .why-us-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.why-us .why-us-image img {
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.why-us .btn {
  display: block;
  margin: 0 auto;
}

.services {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.services h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.services .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .services .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.services .service-card {
  background-color: white;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.services .service-card:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.services .service-card .service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}
.services .service-card .service-icon img {
  width: 100%;
  height: auto;
}
.services .service-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
.services .service-card p {
  font-size: 14px;
  color: #666;
}
.services .btn {
  display: block;
  margin: 0 auto;
}

.testimonials {
  padding: 60px 0;
}
.testimonials h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 576px) {
  .testimonials .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .testimonials .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonials .testimonial-card {
  background-color: white;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
}
.testimonials .testimonial-card .testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
}
.testimonials .testimonial-card .testimonial-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .testimonial-card .testimonial-rating {
  margin-bottom: 15px;
}
.testimonials .testimonial-card .testimonial-rating .star {
  color: #ffb400;
  font-size: 18px;
}
.testimonials .testimonial-card h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.testimonials .testimonial-card p {
  font-size: 14px;
  color: #666;
}

.faq {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.faq h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.faq .faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq .faq-item {
  background-color: white;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
}
.faq .faq-item:last-child {
  margin-bottom: 0;
}
.faq .faq-question {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.faq .faq-question h3 {
  font-size: 16px;
  font-weight: 600;
}
.faq .faq-question .faq-toggle {
  font-size: 24px;
  font-weight: 700;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq .faq-question.active .faq-toggle {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq .faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease, padding 0.3s ease;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq .faq-answer.active {
  padding: 0 20px 20px;
  max-height: 1000px;
}
.faq .faq-answer p {
  color: #666;
}

.contact {
  padding: 60px 0;
}
.contact h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.contact .contact-info {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.contact .contact-info p {
  margin-bottom: 20px;
  color: #666;
}
.contact .contact-info .contact-details p {
  margin-bottom: 5px;
}
.contact .contact-info .contact-details p:last-child {
  margin-bottom: 0;
}
.contact .contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact .contact-form .form-group {
  margin-bottom: 20px;
}
.contact .contact-form .form-group input,
.contact .contact-form .form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}
.contact .contact-form .form-group input:focus,
.contact .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #00bcd4;
}
.contact .contact-form .form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.contact .contact-form .btn {
  width: 100%;
}

.footer {
  padding: 40px 0;
  background-color: #333;
  color: white;
}
.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer .footer-logo {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.footer .footer-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.footer .footer-links ul li a {
  font-size: 14px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer .footer-links ul li a:hover {
  color: #00bcd4;
}
.footer .footer-copyright {
  font-size: 14px;
  color: #aaa;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 20px);
            transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@media (max-width: 768px) {
  .header .nav ul {
    gap: 10px;
    font-size: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .footer-links ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.text-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 60px 0;
}
.text-section h2 {
  font-family: Montserrat;
  font-weight: 800;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.text-section p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
}

.thank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 60px 0;
}
.thank h2 {
  font-family: Montserrat;
  font-weight: 800;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  text-align: center;
}
.thank p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

@media (max-width: 960px) {
  .thank h2,
  .text-section h2 {
    font-family: Montserrat;
    font-weight: 800;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    overflow-wrap: anywhere;
  }
}