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

.contact {
  padding: 80px 0;
  background: -webkit-gradient(linear, left top, right top, from(#6e3dc8), to(#3c8dfc));
  background: linear-gradient(90deg, #6e3dc8 0%, #3c8dfc 100%);
  color: #fff;
}

.contact h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.contact h3 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.contact p {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  opacity: 0.9;
}

.contact .contact-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.contact .contact-content .contact-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact .contact-content .contact-info .info-item {
  margin-bottom: 20px;
}

.contact .contact-content .contact-info .info-item p {
  margin: 0;
  text-align: left;
}

.contact .contact-content .contact-form {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.contact .contact-content .contact-form form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact .contact-content .contact-form form .form-group:nth-child(4) {
  grid-column: span 2;
}

.contact .contact-content .contact-form form .form-group input,
.contact .contact-content .contact-form form .form-group textarea {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.contact .contact-content .contact-form form .form-group input::-webkit-input-placeholder,
.contact .contact-content .contact-form form .form-group textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact .contact-content .contact-form form .form-group input:-ms-input-placeholder,
.contact .contact-content .contact-form form .form-group textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact .contact-content .contact-form form .form-group input::-ms-input-placeholder,
.contact .contact-content .contact-form form .form-group textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact .contact-content .contact-form form .form-group input::placeholder,
.contact .contact-content .contact-form form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact .contact-content .contact-form form .form-group input:focus,
.contact .contact-content .contact-form form .form-group textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
}

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

.contact .contact-content .contact-form form button {
  grid-column: span 2;
  background-color: #fff;
  color: #6e3dc8;
  border: none;
  cursor: pointer;
}

.contact .contact-content .contact-form form button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.footer {
  padding: 40px 0;
  background-color: #333;
  color: #fff;
}

.footer .footer-content {
  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;
  margin-bottom: 20px;
}

.footer .footer-content .footer-logo {
  font-size: 24px;
  font-weight: 700;
}

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

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

.footer .footer-content .footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
}

.footer .footer-content .footer-links ul li a:hover {
  color: #fff;
}

.footer .footer-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.success-section {
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f8f9fa;
  padding: 80px 0;
}

.success-section .success-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.success-section .success-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: #6e3dc8;
  margin-bottom: 20px;
}

.success-section .success-content p {
  margin-bottom: 30px;
  color: #666;
}

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

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

a:hover {
  color: #3c8dfc;
}

ul {
  list-style: none;
}

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

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

.btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn.btn-primary {
  background: -webkit-gradient(linear, left top, right top, from(#6e3dc8), to(#3c8dfc));
  background: linear-gradient(90deg, #6e3dc8 0%, #3c8dfc 100%);
  color: #fff;
}

.btn.btn-primary:hover {
  background: -webkit-gradient(linear, left top, right top, from(#6234b7), to(#237efc));
  background: linear-gradient(90deg, #6234b7 0%, #237efc 100%);
}

.btn.btn-secondary {
  background: #fff;
  color: #6e3dc8;
  border: 1px solid #6e3dc8;
}

.btn.btn-secondary:hover {
  background: rgba(110, 61, 200, 0.05);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px;
  display: none;
}

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

.cookie-banner .cookie-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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.cookie-banner .cookie-content .cookie-icon {
  margin-bottom: 10px;
}

.cookie-banner .cookie-content .cookie-icon img {
  width: 50px;
  height: 50px;
}

.cookie-banner .cookie-content h3 {
  color: #6e3dc8;
  font-size: 24px;
  margin-bottom: 10px;
}

.cookie-banner .cookie-content p {
  margin-bottom: 20px;
  color: #666;
}

.cookie-banner .cookie-content .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 100%;
}

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

.header {
  padding: 20px 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header .header-content {
  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 .header-content .logo {
  font-size: 24px;
  font-weight: 700;
}

.header .header-content .logo a {
  color: #6e3dc8;
}

.header .header-content .navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

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

.header .header-content .navigation ul li a:hover {
  color: #6e3dc8;
}

.hero {
  padding: 80px 0;
  background: -webkit-gradient(linear, left top, right top, from(#6e3dc8), to(#3c8dfc));
  background: linear-gradient(90deg, #6e3dc8 0%, #3c8dfc 100%);
  color: #fff;
}

.hero .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

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

.hero .hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero .hero-content h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero .hero-content p {
  margin-bottom: 30px;
  font-size: 18px;
  opacity: 0.9;
}

.hero .hero-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.hero .hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

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

.about h2 {
  font-size: 32px;
  font-weight: 700;
  color: #6e3dc8;
  text-align: center;
  margin-bottom: 40px;
}

.about .about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

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

.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;
  border-radius: 10px;
  overflow: hidden;
}

.about .about-content .about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.mission {
  padding: 80px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.mission h2 {
  font-size: 32px;
  font-weight: 700;
  color: #6e3dc8;
  margin-bottom: 10px;
}

.mission h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.mission p {
  max-width: 800px;
  margin: 0 auto;
  color: #666;
}

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

.services h2 {
  font-size: 32px;
  font-weight: 700;
  color: #6e3dc8;
  text-align: center;
  margin-bottom: 40px;
}

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

.services .services-grid .service-card {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.services .services-grid .service-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.services .services-grid .service-card .service-icon .icon-diamond {
  width: 40px;
  height: 40px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: currentColor;
  margin-bottom: 20px;
}

.services .services-grid .service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

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

.services .services-grid .service-card.purple {
  border-top: 4px solid #6e3dc8;
}

.services .services-grid .service-card.purple .icon-diamond {
  background-color: #6e3dc8;
}

.services .services-grid .service-card.green {
  border-top: 4px solid #3dc88e;
}

.services .services-grid .service-card.green .icon-diamond {
  background-color: #3dc88e;
}

.services .services-grid .service-card.orange {
  border-top: 4px solid #ff8a3d;
}

.services .services-grid .service-card.orange .icon-diamond {
  background-color: #ff8a3d;
}

.services .services-grid .service-card.blue {
  border-top: 4px solid #3d8afc;
}

.services .services-grid .service-card.blue .icon-diamond {
  background-color: #3d8afc;
}

.services .services-grid .service-card.yellow {
  border-top: 4px solid #ffc83d;
}

.services .services-grid .service-card.yellow .icon-diamond {
  background-color: #ffc83d;
}

.services .services-grid .service-card.teal {
  border-top: 4px solid #3dc8c8;
}

.services .services-grid .service-card.teal .icon-diamond {
  background-color: #3dc8c8;
}

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

.testimonials h2 {
  font-size: 32px;
  font-weight: 700;
  color: #6e3dc8;
  text-align: center;
  margin-bottom: 40px;
}

.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;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  -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.15);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

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

.testimonials .testimonials-grid .testimonial-card p {
  margin-bottom: 20px;
  color: #666;
  font-style: italic;
}

.testimonials .testimonials-grid .testimonial-card .client-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonials .testimonials-grid .testimonial-card .client-info p {
  margin-bottom: 0;
  font-style: normal;
  font-size: 14px;
}

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

.blog h2 {
  font-size: 32px;
  font-weight: 700;
  color: #6e3dc8;
  text-align: center;
  margin-bottom: 40px;
}

.blog .blog-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;
}

.blog .blog-grid .blog-card {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

.blog .blog-grid .blog-card .blog-image {
  height: 200px;
  overflow: hidden;
}

.blog .blog-grid .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog .blog-grid .blog-card .blog-image img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.blog .blog-grid .blog-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 20px 20px 10px;
}

.blog .blog-grid .blog-card p {
  margin: 0 20px 20px;
  color: #666;
}

.blog .blog-grid .blog-card .read-more {
  display: inline-block;
  margin: 0 20px 20px;
  font-weight: 600;
  color: #6e3dc8;
}

.blog .blog-grid .blog-card .read-more:hover {
  color: #3c8dfc;
}

@media (max-width: 992px) {
  .hero .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services .services-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .contact .contact-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 768px) {
  .services .services-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .testimonials .testimonials-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .blog .blog-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .header .header-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .contact .contact-form form {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .contact .contact-form form .form-group:nth-child(4) {
    grid-column: span 1;
  }
  .contact .contact-form form button {
    grid-column: span 1;
  }
}

.privacy {
  margin-top: 100px;
  margin-bottom: 100px;
}

.privacy h1 {
  font-size: 32px;
  margin-bottom: 32px;
  color: #6e3dc8;
}
/*# sourceMappingURL=style.css.map */