
:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-gold: #D4AF37;
  --color-gray-100: #F5F5F5;
  --color-gray-200: #E0E0E0;
  --color-gray-300: #BDBDBD;
  --color-gray-400: #757575;
  --color-gray-500: #424242;
  --color-gray-600: #212121;
  --font-primary: 'Outfit', serif;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

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

section {
  padding: 5rem 0;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--color-black);
  color: var(--color-white);
  border: 2px solid var(--color-black);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.btn-outline {
  background: transparent;
  color: var(--color-black);
}

.btn-outline:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-gold {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-black);
}

.btn-gold:hover {
  background: transparent;
  color: var(--color-gold);
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
  height: 40px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
}


.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-background.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
  z-index: 0;
  transform: translateZ(-10px) scale(2);
}

.hero-content {
  max-width: 800px;
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transform: translateZ(0);
}

.hero-title {
  margin-bottom: 1.5rem;
  color: white;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  min-height: 3rem;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}


.metrics {
  background: var(--color-gray-100);
  text-align: center;
}

.metrics-title {
  margin-bottom: 3rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.metric-item {
  padding: 2rem;
  background: var(--color-white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.metric-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 1.2rem;
  color: var(--color-gray-500);
}


.how-it-works {
  text-align: center;
}

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

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


.popular-lessons {
  background: var(--color-gray-100);
}

.lessons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.lesson-card {
  background: var(--color-white);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

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

.lesson-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.lesson-content {
  padding: 1.5rem;
}

.lesson-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--color-gray-400);
}

.lesson-tag {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  background: var(--color-gray-200);
  border-radius: 20px;
}

.lesson-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.lesson-description {
  margin-bottom: 1.5rem;
  color: var(--color-gray-500);
}

.view-all {
  text-align: center;
  margin-top: 3rem;
}


.video-lessons {
  text-align: center;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.video-card {
  position: relative;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.video-card:hover .video-thumbnail {
  transform: scale(1.05);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  transition: var(--transition);
}

.video-card:hover .play-icon {
  background: var(--color-gold);
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  width: 80%;
  max-width: 900px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
}


.infographics {
  background: var(--color-gray-100);
}

.infographics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.infographic-item {
  text-align: center;
}

.infographic-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.infographic-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.infographic-description {
  color: var(--color-gray-500);
}


.webinars {
  text-align: center;
}

.webinars-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.webinar-item {
  background: var(--color-white);
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: left;
}

.webinar-date {
  font-weight: 700;
  color: var(--color-gold);
  min-width: 120px;
}

.webinar-info {
  flex: 1;
}

.webinar-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.webinar-description {
  color: var(--color-gray-500);
  margin-bottom: 0;
}


.contact-form-section {
  background: var(--color-gray-100);
}

.contact-form {
  background: var(--color-white);
  padding: 3rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
}

.form-title {
  text-align: center;
  margin-bottom: 2rem;
}

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

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

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-gray-300);
  font-family: var(--font-primary);
  font-size: 1rem;
}

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

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input {
  margin-top: 0.3rem;
}

.form-submit {
  text-align: center;
}


.faq-section {
  background: var(--color-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.faq-question {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
}

.faq-question::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1rem;
}


.articles-section {
  background: var(--color-gray-100);
}

.articles-list {
  margin-top: 2rem;
}

.article-item {
  padding: 1.5rem;
  background: var(--color-white);
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.article-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.article-meta {
  color: var(--color-gray-400);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.article-excerpt {
  color: var(--color-gray-500);
  margin-bottom: 1rem;
}


.newsletter {
  text-align: center;
  padding: 4rem 0;
  background: var(--color-black);
  color: var(--color-white);
}

.newsletter-title {
  color: var(--color-white);
}

.newsletter-description {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  font-family: var(--font-primary);
  font-size: 1rem;
}

.newsletter-button {
  background: var(--color-gold);
  color: var(--color-black);
  padding: 0 1.5rem;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-button:hover {
  background: var(--color-white);
}


.site-footer {
  background: var(--color-gray-600);
  color: var(--color-white);
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
  height: 40px;
}

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--color-gold);
}

.footer-nav-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-nav-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--color-gold);
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-item {
  margin-bottom: 0.8rem;
}

.footer-nav-link {
  color: var(--color-gray-300);
  transition: var(--transition);
}

.footer-nav-link:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

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

.footer-disclaimer {
  margin-top: 1rem;
  font-style: italic;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: var(--color-white);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text a {
  color: var(--color-gold);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-button {
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.cookie-accept {
  background: var(--color-gold);
  color: var(--color-black);
}

.cookie-accept:hover {
  background: var(--color-white);
}

.cookie-decline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.cookie-decline:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.cookie-settings {
  background: transparent;
  color: var(--color-gold);
  text-decoration: underline;
}


.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: var(--color-white);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-modal-title {
  margin-bottom: 1.5rem;
}

.cookie-option {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.cookie-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-option-title {
  font-weight: 700;
  margin: 0;
}

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

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

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

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

input:checked + .cookie-slider {
  background-color: var(--color-gold);
}

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

.cookie-option-description {
  color: var(--color-gray-500);
  font-size: 0.9rem;
}

.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
}

.cookie-save {
  background: var(--color-black);
  color: var(--color-white);
  padding: 0.5rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-save:hover {
  background: var(--color-gold);
  color: var(--color-black);
}


.lessons-header {
  text-align: center;
  margin-bottom: 3rem;
}

.lessons-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.filter-group {
  position: relative;
}

.filter-select {
  padding: 0.5rem 2rem 0.5rem 1rem;
  border: 1px solid var(--color-gray-300);
  background: var(--color-white);
  appearance: none;
  font-family: var(--font-primary);
  cursor: pointer;
}

.filter-group::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.lessons-search {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 3rem;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 3rem;
  border: 1px solid var(--color-gray-300);
  font-family: var(--font-primary);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray-400);
}


.description-section {
  padding: 5rem 0;
}

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

.description-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 3rem;
}

.mission-section,
.methodology-section,
.areas-section {
  margin-bottom: 4rem;
}

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

.area-item {
  background: var(--color-gray-100);
  padding: 1.5rem;
  border-left: 3px solid var(--color-gold);
}

.area-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}


.start-guide {
  padding: 5rem 0;
}

.start-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.guide-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 3rem;
}

.steps-container {
  max-width: 800px;
  margin: 0 auto;
}

.guide-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
}

.guide-step:nth-child(odd) .step-number {
  background: var(--color-gold);
  color: var(--color-black);
}

.step-content h3 {
  margin-bottom: 1rem;
}

.step-content p {
  margin-bottom: 1.5rem;
}

.step-resources {
  background: var(--color-gray-100);
  padding: 1rem;
  border-left: 3px solid var(--color-gold);
}

.mistakes-section {
  background: var(--color-gray-100);
  padding: 3rem;
  margin-top: 4rem;
  text-align: center;
}

.mistakes-list {
  text-align: left;
  max-width: 600px;
  margin: 2rem auto 0;
}

.mistake-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mistake-icon {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}


.contacts-section {
  padding: 5rem 0;
}

.contacts-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  color: var(--color-gold);
  font-size: 1.5rem;
}

.contact-directions {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--color-gray-100);
  border-left: 3px solid var(--color-gold);
}


.thanks-section {
  padding: 10rem 0;
  text-align: center;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--color-gold);
  margin-bottom: 2rem;
}

.thanks-title {
  margin-bottom: 1rem;
}

.thanks-message {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}


.legal-page {
  padding: 5rem 0;
}

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

.legal-date {
  margin-bottom: 2rem;
  color: var(--color-gray-400);
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  margin-bottom: 1.5rem;
}

.legal-section h3 {
  margin-bottom: 1rem;
}

.legal-list {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-list li {
  margin-bottom: 0.5rem;
}


.parallax-container {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  background-size: cover;
  background-position: center;
  transform: translateZ(-1px) scale(2);
  z-index: -1;
}

.parallax-content {
  position: relative;
  transform: translateZ(0);
  z-index: 1;
}


@media (max-width: 992px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .contacts-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 1.5rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
  }
  
  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .webinar-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  
  .guide-step {
    grid-template-columns: 1fr;
  }
  
  .step-number {
    margin: 0 auto 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 500px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-input,
  .newsletter-button {
    width: 100%;
    padding: 0.8rem;
  }
  
  .newsletter-button {
    margin-top: 1rem;
  }
}


.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}


.iti {
  width: 100%;
}