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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #333333;
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button {
  font-family: "Inter", sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

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

h1 {
  font-size: 2.5rem;
}

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

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

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

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

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

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

.btn.primary-btn:hover {
  background-color: #0041f5;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn.secondary-btn {
  background-color: transparent;
  color: #2962ff;
  border: 2px solid #2962ff;
}

.btn.secondary-btn:hover {
  background-color: #2962ff;
  color: #ffffff;
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

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: 1rem 0;
}

header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2962ff;
}

header .desktop-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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

header .desktop-nav ul li a {
  font-weight: 500;
}

header .desktop-nav ul li a:hover {
  color: #2962ff;
}

@media (max-width: 992px) {
  header .desktop-nav {
    display: none;
  }
}

header .mobile-menu-btn {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

header .mobile-menu-btn span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #1e2431;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .mobile-menu-btn.active span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}

header .mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

header .mobile-menu-btn.active span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
  header .mobile-menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

header .mobile-nav {
  display: none;
  background-color: #ffffff;
  padding: 1rem 0;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header .mobile-nav.active {
  display: block;
}

header .mobile-nav ul {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}

header .mobile-nav ul li {
  width: 100%;
}

header .mobile-nav ul li a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
}

header .mobile-nav ul li a:hover {
  color: #2962ff;
  background-color: rgba(41, 98, 255, 0.05);
}

.hero {
  background: linear-gradient(135deg, #2962ff, #6942f5);
  color: #ffffff;
  padding: 5rem 0;
  text-align: center;
}

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

.hero .hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.topics {
  padding: 5rem 0;
  background-color: #ffffff;
}

.topics .topics-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .topics .topics-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

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

.topics .topic-card {
  background-color: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 2rem;
}

.topics .topic-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.topics .topic-card .icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
}

.topics .topic-card .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about {
  padding: 5rem 0;
  background-color: #f5f5f7;
}

.about .about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about .about-content .quote {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 4px solid #2962ff;
  background-color: rgba(41, 98, 255, 0.05);
}

.about .about-content .quote p {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
}

.insights {
  padding: 5rem 0;
}

.insights .articles-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .insights .articles-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .insights .articles-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.insights .article-card {
  background-color: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}

.insights .article-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.insights .article-card .article-image {
  height: 200px;
}

.insights .article-card .article-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.insights .article-card .article-content {
  padding: 1.5rem;
}

.visuals {
  padding: 5rem 0;
  background-color: #f5f5f7;
}

.visuals .visuals-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .visuals .visuals-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

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

.visuals .visual-card {
  background-color: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}

.visuals .visual-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.visuals .visual-card .visual-image {
  height: 200px;
}

.visuals .visual-card .visual-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.visuals .visual-card h3, .visuals .visual-card p {
  padding: 0 1.5rem;
}

.visuals .visual-card h3 {
  margin-top: 1.5rem;
}

.visuals .visual-card p {
  margin-bottom: 1.5rem;
}

.tools {
  padding: 5rem 0;
}

.tools .tools-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .tools .tools-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

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

.tools .tool-card {
  background-color: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 2rem;
  text-align: center;
}

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

.tools .tool-card .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem;
}

.tools .tool-card .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact {
  padding: 5rem 0;
  background-color: #f5f5f7;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact .form-group {
  margin-bottom: 1.5rem;
}

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

.contact .form-group input, .contact .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
}

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

.contact button {
  margin-bottom: 1rem;
}

.contact .form-disclaimer {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0;
}

.success-message {
  padding: 8rem 0;
}

.success-message h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.success-message p {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.success-message .btn {
  margin-top: 2rem;
}

footer {
  background-color: #1e2431;
  color: #ffffff;
  padding: 2rem 0;
}

footer .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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 1rem;
}

footer .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: 2rem;
}

footer .footer-links a:hover {
  color: #2962ff;
}

footer .copyright {
  font-size: 0.875rem;
  opacity: 0.8;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1e2431;
  color: #ffffff;
  padding: 1rem;
  z-index: 1001;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.cookie-popup.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.cookie-popup .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  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;
}

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

.cookie-popup .cookie-content p {
  margin-bottom: 0;
}

.cookie-popup .cookie-content p a {
  color: #2962ff;
  text-decoration: underline;
}

.cookie-popup .cookie-content p a:hover {
  color: #5c87ff;
}

.cookie-popup .cookie-content .cookie-buttons {
  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: 1rem;
}
/*# sourceMappingURL=style.css.map */