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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Geologica', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

h1 {
  font-size: 42px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;
}

@media (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

p {
  margin-bottom: 20px;
}

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

a {
  color: #e88841;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  color: #db6d1b;
}

ul {
  list-style: none;
}

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

.hidden {
  display: none !important;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  outline: none;
}

.btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media (max-width: 768px) {
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.btn-primary {
  background-color: #e88841;
  color: #fff;
}

.btn-primary:hover {
  background-color: #db6d1b;
}

.btn-secondary {
  background-color: #e88841;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #db6d1b;
}

.btn-text {
  background: none;
  color: #243e36;
  padding: 12px 0;
}

.btn-text:hover {
  color: #e88841;
  background: none;
  -webkit-transform: none;
          transform: none;
}

.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cookie-banner .cookie-content {
  background-color: #fff;
  max-width: 450px;
  width: 90%;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.cookie-banner .cookie-content .cookie-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.cookie-banner .cookie-content .cookie-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cookie-banner .cookie-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.cookie-banner .cookie-content p {
  margin-bottom: 25px;
  font-size: 14px;
  color: #666;
}

.cookie-banner .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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.cookie-banner .cookie-content .cookie-buttons .btn {
  width: 100%;
}

.thank-you-banner {
  min-height: 76vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.thank-you-banner .thank-you-content {
  background-color: #fff;
  max-width: 450px;
  width: 90%;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.thank-you-banner .thank-you-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.thank-you-banner .thank-you-content p {
  margin-bottom: 25px;
  font-size: 16px;
}

.header {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  padding: 15px 0;
}

.header .header-content .logo a {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #e88841;
}

.header .header-content .logo a:hover {
  color: #db6d1b;
}

.header .header-content .main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

@media (max-width: 768px) {
  .header .header-content .main-nav ul {
    display: none;
  }
}

.header .header-content .main-nav ul li a {
  color: #333;
  font-weight: 500;
}

.header .header-content .main-nav ul li a:hover {
  color: #e88841;
}

.hero {
  background-color: #f5f5f5;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background-image: url(./assets/1.png);
  background-size: cover;
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
  }
}

.hero .hero-content {
  max-width: 800px;
}

.hero .hero-content h1 {
  margin-bottom: 25px;
  color: #243e36;
}

.hero .hero-content p {
  font-size: 18px;
  margin-bottom: 35px;
  color: #666;
  max-width: 650px;
}

@media (max-width: 768px) {
  .hero .hero-content p {
    font-size: 16px;
  }
}

.about {
  padding: 80px 0;
  background-color: #fff;
}

@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
}

.about h2 {
  text-align: left;
  color: #243e36;
}

.about .about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
}

@media (max-width: 768px) {
  .about .about-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.about .about-content .about-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

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

.about .about-content .about-text p:last-child {
  margin-bottom: 0;
}

.about .about-content .about-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about .about-content .about-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonials {
  padding: 80px 0;
  background-color: #f5f5f5;
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
}

.testimonials h2 {
  text-align: center;
  color: #243e36;
}

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

.testimonials .testimonials-grid .testimonial-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.testimonials .testimonials-grid .testimonial-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonials-grid .testimonial-card .testimonial-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.testimonials .testimonials-grid .testimonial-card .testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonials .testimonials-grid .testimonial-card .testimonial-author h3 {
  margin-bottom: 0;
  font-size: 18px;
  color: #243e36;
}

.testimonials .testimonials-grid .testimonial-card .testimonial-rating {
  margin-bottom: 15px;
}

.testimonials .testimonials-grid .testimonial-card .testimonial-rating .star {
  color: #FFD700;
  font-size: 16px;
}

.testimonials .testimonials-grid .testimonial-card .testimonial-text {
  font-style: italic;
  color: #666;
  margin-bottom: 0;
}

.services {
  padding: 80px 0;
  background-color: #fff;
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }
}

.services h2 {
  text-align: center;
  color: #243e36;
}

.services .services-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #666;
}

.services .services-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.services .services-grid .service-card {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
}

.services .services-grid .service-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services .services-grid .service-card .service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.services .services-grid .service-card .service-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.services .services-grid .service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #243e36;
}

.services .services-grid .service-card p {
  color: #666;
  margin-bottom: 0;
}

.features {
  padding: 80px 0;
  background-color: #f5f5f5;
}

@media (max-width: 768px) {
  .features {
    padding: 60px 0;
  }
}

.features h2 {
  text-align: center;
  color: #243e36;
  margin-bottom: 50px;
}

.features .features-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.features .features-grid .feature {
  padding: 30px;
}

.features .features-grid .feature .feature-number {
  font-family: 'Geologica', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #e88841;
  margin-bottom: 15px;
}

.features .features-grid .feature h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #243e36;
}

.features .features-grid .feature p {
  color: #666;
  margin-bottom: 0;
}

.cta {
  padding: 80px 0;
  background-color: #fff;
}

@media (max-width: 768px) {
  .cta {
    padding: 60px 0;
  }
}

.cta .cta-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 50px;
}

@media (max-width: 768px) {
  .cta .cta-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cta .cta-content .cta-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cta .cta-content .cta-text h2 {
  color: #243e36;
}

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

.cta .cta-content .cta-text p:last-of-type {
  margin-bottom: 30px;
}

.cta .cta-content .cta-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cta .cta-content .cta-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact {
  padding: 80px 0;
  background-color: #f5f5f5;
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
}

.contact h2 {
  text-align: center;
  color: #243e36;
}

.contact .contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #666;
}

.contact .contact-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact .contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact .contact-form .form-group {
  margin-bottom: 20px;
}

.contact .contact-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact .contact-form .form-group input,
.contact .contact-form .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

.contact .contact-form button {
  width: 100%;
  margin-top: 10px;
}

.footer {
  background-color: #243e36;
  padding: 50px 0;
  color: #fff;
}

.footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.footer .footer-content .footer-logo a {
  font-family: 'Geologica', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.footer .footer-content .footer-logo a:hover {
  color: #e88841;
}

.footer .footer-content .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.footer .footer-content .footer-links a {
  color: #fff;
  font-size: 14px;
}

.footer .footer-content .footer-links a:hover {
  color: #e88841;
}

.footer .footer-content .footer-copyright p {
  font-size: 14px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

input:invalid,
textarea:invalid {
  border-color: #ff3b30;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.hero,
.about,
.testimonials,
.services,
.features,
.cta,
.contact {
  -webkit-animation: fadeIn 0.6s ease-out;
          animation: fadeIn 0.6s ease-out;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
  .hero .hero-content {
    margin: 0 auto;
  }
  .about .about-content .about-image {
    margin-bottom: 30px;
  }
  .cta .cta-content .cta-image {
    margin-top: 30px;
  }
  .features .features-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .testimonials .testimonials-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .services .services-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .contact .contact-form {
    padding: 30px 20px;
  }
}

.policy {
  padding-top: 100px;
  padding-bottom: 100px;
}

.policy h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 36px;
  margin-bottom: 20px;
}
/*# sourceMappingURL=style.css.map */