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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
}

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

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

a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
}

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

.btn-secondary {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}

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

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f5f5f5;
  padding: 20px;
  z-index: 1000;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-popup-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-popup-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.cookie-popup-content p {
  margin-bottom: 20px;
  line-height: 1.5;
}

.cookie-popup .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;
}

@media (min-width: 768px) {
  .cookie-popup .cookie-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

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

@media (min-width: 768px) {
  .cookie-popup .cookie-buttons .btn {
    width: auto;
  }
}

.header {
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -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-weight: 700;
  font-size: 18px;
}

.header .logo a {
  color: #000000;
}

.header .main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

@media (max-width: 768px) {
  .header .main-nav ul {
    gap: 15px;
  }
}

.header .main-nav ul li a {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}

.header .main-nav ul li a:hover {
  opacity: 0.7;
}

.hero {
  padding: 80px 0;
  text-align: center;
}

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

.hero h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;

}

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

.hero p {
  font-size: 18px;
  line-height: 1.6;

  color: #333333;
}

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

.stats {
  padding: 60px 0;
  background-color: #f5f5f5;
  text-align: center;
}

.stats-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .stats-grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.stats .stat-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.stats .stat-item p {
  font-size: 14px;
  color: #333333;
}

.stats .button-wrapper {
  text-align: center;
}

.examples {
  padding: 80px 0;
}

.examples h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 50px;
}

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

.examples-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .examples-grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .examples-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.examples .example-item {
  margin-bottom: 30px;
}

.examples .example-item .example-image {
  height: 200px;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 10px;
}

.examples .example-item .example-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.examples .example-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.examples .example-item p {
  font-size: 14px;
  color: #333333;
}

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

.testimonials h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 50px;
}

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

.testimonials-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .testimonials-grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.testimonials .testimonial-item {
  position: relative;
}

.testimonials .testimonial-item .testimonial-image {
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.testimonials .testimonial-item .testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonials .testimonial-item .testimonial-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.inspiration {
  padding: 80px 0;
}

.inspiration h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 50px;
}

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

.inspiration-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .inspiration-grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .inspiration-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.inspiration .inspiration-item {
  margin-bottom: 30px;
}

.inspiration .inspiration-item .inspiration-image {
  height: 200px;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 10px;
}

.inspiration .inspiration-item .inspiration-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.inspiration .inspiration-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.inspiration .inspiration-item p {
  font-size: 14px;
  color: #333333;
}

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

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

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

.contact .form-group input, .contact .form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

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

.contact .form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact .form-group button {
  width: 100%;
}

.footer {
  padding: 30px 0;
  background-color: #000000;
  color: #ffffff;
}

.footer-content {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          gap: 100px;
}

@media (max-width: 768px) {
  .footer-content {

    gap: 50px;
    text-align: center;
  }
}

.footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.footer-right a {
  color: #ffffff;
  font-size: 14px;
}

.footer-right a:hover {
  text-decoration: underline;
}
.privacy{
  padding-top: 50px;
  padding-bottom: 50px;
  h1{
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
  }
}
.success-content{
  min-height: 75dvh;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  h1{
    font-size: 32px;
    
  }
}