* {
  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: #333333;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

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

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

a:hover {
  color: #00d1a1;
}

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  background-color: #00d1a1;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: #009e7a;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

header {
  padding: 20px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 100;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px 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 .logo {
  font-size: 24px;
  font-weight: 700;
  color: #00d1a1;
}

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

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

@media (max-width: 576px) {
  header .header-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

.hero {
  background: linear-gradient(135deg, #00d1a1 0%, #7366f2 100%);
  padding: 100px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./assets/hero-pattern.svg");
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hero .hero-content h1 {
  font-size: 48px;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.2;
}

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

@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 30px;
  }
}

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

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

.services {
  padding: 80px 0;
}

.services h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 48px;
  position: relative;
}

.services h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #00d1a1;
  margin: 16px auto 0;
  border-radius: 2px;
}

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

@media (max-width: 768px) {
  .services .services-grid {
    -ms-grid-columns: (minmax(280px, 1fr))[auto-fill];
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

.services .service-card {
  background-color: #f8f9fa;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

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

.services .service-card .service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(0, 209, 161, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services .service-card .service-icon img {
  width: 40px;
  height: 40px;
}

.services .service-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #6366f1;
}

.services .service-card p {
  color: rgba(51, 51, 51, 0.8);
}

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

.history h2,
.history h3 {
  text-align: center;
}

.history h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.history h3 {
  font-size: 22px;
  color: #6366f1;
  margin-bottom: 48px;
  font-weight: 500;
}

.history .history-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
  margin-bottom: 40px;
}

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

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

.history .history-content .history-text p {
  color: rgba(51, 51, 51, 0.8);
  font-size: 16px;
  line-height: 1.8;
}

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

.history .history-content .history-image img {
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.history .btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

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

.faq h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 48px;
  position: relative;
}

.faq h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #00d1a1;
  margin: 16px auto 0;
  border-radius: 2px;
}

.faq .faq-item {
  background-color: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq .faq-item .faq-question {
  padding: 20px;
  cursor: pointer;
  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;
  position: relative;
}

.faq .faq-item .faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.faq .faq-item .faq-question .faq-toggle {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq .faq-item .faq-question .faq-toggle::before, .faq .faq-item .faq-question .faq-toggle::after {
  content: "";
  position: absolute;
  background-color: #00d1a1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-question .faq-toggle::before {
  width: 100%;
  height: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.faq .faq-item .faq-question .faq-toggle::after {
  width: 3px;
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.faq .faq-item .faq-question.active .faq-toggle::after {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq .faq-item .faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-answer p {
  padding-bottom: 20px;
  color: rgba(51, 51, 51, 0.8);
}

.faq .faq-item.active .faq-answer {
  max-height: 300px;
}

.blog {
  padding: 80px 0;
}

.blog h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 48px;
  position: relative;
}

.blog h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #00d1a1;
  margin: 16px auto 0;
  border-radius: 2px;
}

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

.blog .blog-card {
  background-color: #f8f9fa;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.blog .blog-card .blog-image {
  margin: -24px -24px 20px;
  overflow: hidden;
  height: 180px;
}

.blog .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-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #6366f1;
}

.blog .blog-card p {
  color: rgba(51, 51, 51, 0.8);
  font-size: 14px;
  margin-bottom: 10px;
}

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

.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #00d1a1 0%, #7366f2 100%);
  color: #ffffff;
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./assets/contact-pattern.svg");
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}

.contact p {
  text-align: center;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact .contact-info {
  text-align: center;
  margin-bottom: 40px;
}

.contact .contact-info p {
  margin-bottom: 8px;
  font-size: 18px;
}

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

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

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

.contact form .btn {
  background-color: #ffffff;
  color: #00d1a1;
  font-weight: 700;
  width: 100%;
  padding: 16px;
}

.contact form .btn:hover {
  background-color: #e6e6e6;
  color: #00d1a1;
}

footer {
  background-color: #333333;
  color: #ffffff;
  padding: 40px 0;
}

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

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

footer .footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: #00d1a1;
}

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

@media (max-width: 576px) {
  footer .footer-links ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

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

footer .footer-links a:hover {
  color: #00d1a1;
}

footer .copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.success-message {
  padding: 100px 0;
  min-height: calc(100vh - 170px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.success-message .success-content .success-image {
  max-width: 500px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.success-message .success-content h1 {
  font-size: 36px;
  margin-bottom: 24px;
  color: #6366f1;
  font-weight: 700;
}

@media (max-width: 576px) {
  .success-message .success-content h1 {
    font-size: 30px;
  }
}

.success-message .success-content .success-text {
  margin-bottom: 32px;
}

.success-message .success-content .success-text p {
  margin-bottom: 16px;
  color: rgba(51, 51, 51, 0.8);
  font-size: 18px;
  line-height: 1.8;
}

@media (max-width: 576px) {
  .success-message .success-content .success-text p {
    font-size: 16px;
  }
}

.success-message .success-content .btn {
  display: inline-block;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 1000;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: none;
}

.cookie-popup.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  display: block;
}

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

.cookie-popup .cookie-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.cookie-popup h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #333333;
  text-align: center;
}

.cookie-popup p {
  text-align: center;
  margin-bottom: 24px;
  color: rgba(51, 51, 51, 0.8);
  font-size: 14px;
  max-width: 700px;
}

.cookie-popup .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

@media (max-width: 576px) {
  .cookie-popup .cookie-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.cookie-popup .cookie-buttons .btn-cookie {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cookie-popup .cookie-buttons .btn-cookie.accept {
  background-color: #00d1a1;
  color: #ffffff;
}

.cookie-popup .cookie-buttons .btn-cookie.accept:hover {
  background-color: #009e7a;
}

.cookie-popup .cookie-buttons .btn-cookie.refuse {
  background-color: transparent;
  border: 1px solid #333333;
  color: #333333;
}

.cookie-popup .cookie-buttons .btn-cookie.refuse:hover {
  background-color: #f8f9fa;
}

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

@media (max-width: 768px) {
  header .header-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .header-nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero {
    padding: 80px 0;
  }
  .service-card,
  .blog-card {
    margin: 0 auto;
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 28px !important;
  }
  .hero {
    padding: 60px 0;
  }
  .hero .hero-content h1 {
    font-size: 28px;
  }
  .services,
  .history,
  .faq,
  .blog,
  .contact {
    padding: 60px 0;
  }
  .contact form .btn {
    padding: 14px;
  }
}

.policy {
  margin-top: 80px;
  margin-bottom: 80px;
}

.policy h1 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: left;
  color: #00d1a1;
}
/*# sourceMappingURL=style.css.map */