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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

h1 {
  font-size: 2.5rem;
}

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

h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}

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

h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

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

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: #ff5a45;
}

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

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

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

.btn-primary {
  background-color: #ff5a45;
  color: white;
}

.btn-primary:hover {
  background-color: #ff432c;
  color: white;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #ff5a45;
  color: #ff5a45;
}

.btn-outline:hover {
  background-color: #ff5a45;
  color: white;
}

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

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #fff;
  -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;
  padding: 1rem 0;
}

.header .container {
  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;
}

.header .logo img {
  height: 30px;
}

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

.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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
}

.header .desktop-nav ul li {
  margin-left: 1.5rem;
}

.header .desktop-nav ul li a {
  position: relative;
  padding: 0.5rem 0;
  font-weight: 500;
}

.header .desktop-nav ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ff5a45;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .desktop-nav ul li a:hover:after {
  width: 100%;
}

.header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

@media (max-width: 768px) {
  .header .mobile-menu-toggle {
    display: block;
    width: 30px;
    height: 25px;
    position: relative;
  }
}

.header .mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .mobile-menu-toggle.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}

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

.header .mobile-menu-toggle.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  z-index: 999;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  height: auto;
}

.mobile-menu ul {
  list-style: none;
  padding: 1rem;
  margin: 0;
}

.mobile-menu ul li {
  margin: 1rem 0;
}

.mobile-menu ul li a {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.5rem 0;
}

.hero {
  padding: 4rem 0;
}

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

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

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

.hero .hero-content .hero-text h3 {
  margin-top: 2rem;
}

.hero .hero-content .hero-text .btn {
  margin-top: 1rem;
}

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

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

.approach {
  padding: 4rem 0;
  background-color: #f5f5f5;
}

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

@media (max-width: 992px) {
  .approach .approach-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.approach .approach-content .approach-box h4 {
  color: #ff5a45;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

.for-whom {
  padding: 4rem 0;
}

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

@media (max-width: 992px) {
  .for-whom .for-whom-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.for-whom .for-whom-grid .for-whom-box {
  margin-bottom: 2rem;
}

.topics {
  padding: 4rem 0;
  background-color: #f5f5f5;
}

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

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

.topics .topics-grid .topic-box {
  margin-bottom: 2rem;
}

.articles {
  padding: 4rem 0;
}

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

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

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

.articles .articles-row .article-card {
  background-color: #f5f5f5;
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
}

.articles .articles-row .article-card h3 {
  color: #ff5a45;
}

.articles .unplanned-section {
  background-color: #f5f5f5;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.articles .unplanned-section h3 {
  color: #333;
}

.articles .unplanned-section h4 {
  color: #ff5a45;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

.articles .unplanned-section .btn {
  margin-top: 1rem;
}

.faq {
  padding: 4rem 0;
  background-color: #f5f5f5;
}

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

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

.faq .faq-grid .faq-item {
  margin-bottom: 2rem;
}

.faq .faq-grid .faq-item h3 {
  color: #ff5a45;
}

.contact {
  padding: 4rem 0;
}

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

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

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

.contact .contact-form .form-group label .required {
  color: #ff5a45;
}

.contact .contact-form .form-group input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1rem;
}

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

.contact .contact-form .form-note {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}

.footer {
  padding: 3rem 0;
  background-color: #222;
  color: white;
}

.footer a {
  color: white;
}

.footer a:hover {
  color: #ff5a45;
}

.footer .footer-top {
  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;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer .footer-top {
    -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;
    gap: 1rem;
  }
}

.footer .footer-top .footer-logo img {
  height: 30px;
}

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

@media (max-width: 768px) {
  .footer .footer-top .footer-links {
    -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;
    gap: 0.5rem;
  }
}

.footer .footer-contact {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.footer .footer-contact .contact-item {
  margin-bottom: 0.5rem;
}

.footer .footer-contact .contact-item span {
  font-weight: 700;
  margin-right: 0.5rem;
}

.footer .footer-bottom {
  font-size: 0.9rem;
  opacity: 0.7;
}

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

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

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

.cookie-banner .cookie-content h2 {
  margin-bottom: 1rem;
}

.cookie-banner .cookie-content p {
  margin-bottom: 1.5rem;
  max-width: 800px;
}

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

@media (max-width: 768px) {
  .cookie-banner .cookie-content .cookie-buttons {
    -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;
  }
}

.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 3000;
  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;
  display: none;
}

.success-modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.success-modal .success-content {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  max-width: 500px;
  width: 90%;
}

.success-modal .success-content h2 {
  margin-bottom: 2rem;
}

.success-page {
  padding: 4rem 0;
  min-height: calc(100vh - 270px);
  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;
}

.success-page .success-container {
  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;
  gap: 3rem;
}

@media (max-width: 992px) {
  .success-page .success-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.success-page .success-container .success-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.success-page .success-container .success-image img {
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.success-page .success-container .success-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.success-page .success-container .success-text h1 {
  color: #ff5a45;
  margin-bottom: 1.5rem;
}

.success-page .success-container .success-text p {
  margin-bottom: 2rem;
}

.privacy {
  padding: 100px 0;
}

.privacy h1 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 32px;
}
/*# sourceMappingURL=style.css.map */