
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;700&display=swap');

:root {
  --peach: #FFD4C2;
  --lavender: #E6D7F5;
  --mint: #C3EAD8;
  --light-blue: #A9D8E8;
  --soft-pink: #F8C1D8;
  --coral: #FF8A70;
  --purple: #9B6DC6;
  --turquoise: #4AD9A8;
  --black: #333333;
  --dark-gray: #666666;
  --light-gray: #999999;
  --cream: #FFFAF5;
  --very-light-gray: #F7F7F7;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--black);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--coral);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--peach), var(--lavender));
  color: var(--black);
  border: none;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: var(--black);
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--purple));
  color: white;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--lavender), var(--mint));
  color: var(--black);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

section {
  padding: 80px 0;
}


.blob-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background-color: var(--peach);
  top: -200px;
  right: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background-color: var(--lavender);
  bottom: -150px;
  left: -150px;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background-color: var(--mint);
  top: 40%;
  left: 60%;
}


header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  background-color: rgba(255, 250, 245, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: var(--black);
  font-weight: 500;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(to right, var(--coral), var(--purple));
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--black);
}


.hero {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
  padding-right: 40px;
}

.hero-text h1 {
  margin-bottom: 20px;
  font-size: 3rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--dark-gray);
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


.features {
  padding: 80px 0;
  background-color: var(--very-light-gray);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

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

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lavender), var(--mint));
  border-radius: 50%;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 24px;
  color: var(--black);
}

.feature-card h3 {
  margin-bottom: 15px;
}


.how-it-works {
  padding: 80px 0;
}

.steps {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.step {
  flex: 1;
  padding: 0 20px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--coral), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step img {
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 25px;
  right: -10%;
  width: 20%;
  height: 2px;
  background: linear-gradient(to right, var(--coral), var(--purple));
}


.industries {
  padding: 80px 0;
  background-color: var(--very-light-gray);
}

.industry-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.industry-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.industry-image {
  height: 200px;
  overflow: hidden;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.industry-card:hover .industry-image img {
  transform: scale(1.1);
}

.industry-content {
  padding: 20px;
}


.tools {
  padding: 80px 0;
}

.tools-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.tool {
  background: white;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.tool:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tool-icon {
  margin-right: 15px;
  font-size: 24px;
  color: var(--purple);
}


.security {
  padding: 80px 0;
  background-color: var(--very-light-gray);
}

.security-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.security-text {
  flex: 1;
}

.security-image {
  flex: 1;
}

.security-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


.contact-form-section {
  padding: 80px 0;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--purple);
  outline: none;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 5px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
}


footer {
  background-color: var(--black);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-links h4 {
  margin-bottom: 20px;
  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light-gray);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--light-gray);
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modalOpen 0.5s;
}

@keyframes modalOpen {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-gray);
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-text {
  flex: 2;
  padding-right: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.cookie-settings-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-category {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 20px;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--light-gray);
  transition: var(--transition);
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--purple);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}


.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.article h1 {
  margin-bottom: 20px;
}

.article-meta {
  color: var(--light-gray);
  margin-bottom: 30px;
}

.article-content {
  line-height: 1.8;
}

.article-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.article-content ul, .article-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.article-content li {
  margin-bottom: 10px;
}


.articles-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.article-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.article-card-content {
  padding: 20px;
}

.article-card h3 {
  margin-bottom: 10px;
}

.article-card p {
  color: var(--dark-gray);
  margin-bottom: 15px;
}


.thank-you {
  text-align: center;
  padding: 100px 0;
}

.thank-you-image {
  max-width: 300px;
  margin: 0 auto 40px;
}


.contact-page {
  padding: 80px 0;
}

.contact-info {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.contact-icon {
  margin-right: 15px;
  font-size: 24px;
  color: var(--purple);
}

.map-container {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.policy-content h1 {
  margin-bottom: 30px;
}

.policy-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.policy-content ul, .policy-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 10px;
}

.policy-date {
  color: var(--light-gray);
  margin-bottom: 30px;
}


@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}


@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .step {
    margin-bottom: 40px;
  }
  
  .step:not(:last-child)::after {
    display: none;
  }
  
  .security-content {
    flex-direction: column;
  }
  
  .security-text {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    margin: 10px 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    margin-bottom: 20px;
    padding-right: 0;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons button {
    width: 100%;
    margin-bottom: 10px;
  }
}


.iti {
  width: 100%;
}