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


:root {
  --primary: #2A6592;
  --secondary: #4A8DB7;
  --accent: #FF6B35;
  --background: #F5F7FA;
  --text: #333333;
  --heading: #1A4971;
  --data-blue: #3498DB;
  --success: #27AE60;
  --warning: #F39C12;
  --error: #E74C3C;
  --light-gray: #E5E9F0;
  --medium-gray: #D1D9E6;
  --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans', sans-serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a:hover, a:focus {
  color: var(--accent);
  text-decoration: underline;
}

button, .btn {
  cursor: pointer;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
  background-color: var(--primary);
  color: white;
}

button:hover, .btn:hover, button:focus, .btn:focus {
  background-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

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

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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


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

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}


.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.col {
  flex: 1;
  padding: 0 1rem;
}


.header {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  height: 50px;
}

.nav-desktop {
  display: flex;
}

.nav-mobile {
  display: none;
}

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

.nav-item {
  margin-left: 1.5rem;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

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

.nav-link:hover::after, .nav-link:focus::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem;
}


.hero {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  text-decoration: none;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 50%;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}


.kpi-dashboard {
  background-color: white;
  padding: 2rem 0;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.kpi-card {
  padding: 1.5rem;
  background-color: var(--background);
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
}

.kpi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
}

.kpi-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.kpi-label {
  font-size: 1rem;
  color: var(--text);
}


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

.card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-meta {
  display: flex;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--secondary);
}

.card-meta-item {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.card-meta-item i {
  margin-right: 0.25rem;
}

.card-text {
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.card-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 500;
}


.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.filter-btn {
  background-color: white;
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}


.infographic-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.infographic-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: var(--transition);
}

.infographic-item:hover {
  transform: scale(1.03);
}

.infographic-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.infographic-caption {
  padding: 1rem;
  text-align: center;
  font-size: 0.875rem;
}


.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.edu-card {
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.edu-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.edu-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.edu-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.edu-text {
  font-size: 0.875rem;
}


.contact-form {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  max-width: 600px;
  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.75rem;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-family: 'Noto Sans', sans-serif;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(42, 101, 146, 0.2);
}

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

.form-check-input {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.form-check-label {
  font-size: 0.875rem;
}

.form-submit {
  width: 100%;
  background-color: var(--primary);
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover, .form-submit:focus {
  background-color: var(--accent);
}


.footer {
  background-color: var(--heading);
  color: white;
  padding: 3rem 0 1.5rem;
}

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

.footer-col-title {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

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

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

.footer-nav-link {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-nav-link:hover {
  color: white;
  text-decoration: none;
}

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

.footer-contact-icon {
  color: var(--accent);
  margin-right: 1rem;
  font-size: 1.25rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}


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

.modal.active {
  display: flex;
}

.modal-content {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  padding: 0;
}

.modal-title {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.modal-body {
  margin-bottom: 1.5rem;
}

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


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

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

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

.cookie-text {
  flex: 1;
  margin-right: 1rem;
}

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

.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
}

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

.cookie-decline {
  background-color: var(--light-gray);
  color: var(--text);
}

.cookie-settings {
  background-color: var(--secondary);
  color: white;
}

.cookie-modal .modal-content {
  max-width: 600px;
}

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

.cookie-option:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

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

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

.cookie-option-description {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.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(--light-gray);
  transition: .4s;
  border-radius: 24px;
}

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

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

input:focus + .cookie-slider {
  box-shadow: 0 0 1px var(--success);
}

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


.step-by-step-header {
  background-color: var(--primary);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.step-by-step-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step-by-step-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

.filter-section {
  background-color: white;
  padding: 1.5rem 0;
  margin-bottom: 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-label {
  font-weight: 700;
  min-width: 120px;
}

.step-by-step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.step-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.step-card-content {
  padding: 1.5rem;
}

.step-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-card-meta-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--secondary);
}

.step-card-meta-item i {
  margin-right: 0.25rem;
}

.step-card-description {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.step-card-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-weight: 500;
}

.step-card-link i {
  margin-left: 0.25rem;
  transition: var(--transition);
}

.step-card-link:hover i {
  transform: translateX(3px);
}


.guides-header {
  background-color: var(--secondary);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.guides-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.guides-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

.guide-index {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  margin-bottom: 3rem;
}

.guide-index-title {
  margin-bottom: 1.5rem;
}

.guide-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.guide-index-item {
  padding: 1rem;
  border-radius: 4px;
  background-color: var(--background);
  text-align: center;
  transition: var(--transition);
}

.guide-index-item:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.guide-index-item:hover a {
  color: white;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.guide-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

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

.guide-card-content {
  padding: 1.5rem;
}

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

.guide-card-meta {
  display: flex;
  margin-bottom: 1rem;
}

.guide-card-meta-item {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
  font-size: 0.875rem;
  color: var(--secondary);
}

.guide-card-meta-item i {
  margin-right: 0.25rem;
}

.guide-card-description {
  margin-bottom: 1.5rem;
}

.guide-card-link {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
}

.guide-card-link:hover {
  background-color: var(--accent);
  text-decoration: none;
}


.infographics-header {
  background-color: var(--accent);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.infographics-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.infographics-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

.infographics-filter {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.infographics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.infographic-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: var(--transition);
}

.infographic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.infographic-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.infographic-card-content {
  padding: 1.5rem;
}

.infographic-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.infographic-card-description {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.infographic-card-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-weight: 500;
}

.infographic-card-link i {
  margin-left: 0.25rem;
}

.infographic-modal .modal-content {
  max-width: 900px;
  padding: 1rem;
}

.infographic-modal-image {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.infographic-modal-title {
  margin-bottom: 1rem;
}

.infographic-modal-description {
  margin-bottom: 1.5rem;
}


.contact-header {
  background-color: var(--heading);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.contact-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

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

.contact-info {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

.contact-info-title {
  margin-bottom: 1.5rem;
}

.contact-info-list {
  list-style: none;
  margin: 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  font-size: 1.25rem;
  color: var(--accent);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-info-content {
  flex: 1;
}

.contact-info-label {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-map {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}


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

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

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

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

.thanks-back {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
}

.thanks-back:hover {
  background-color: var(--accent);
  text-decoration: none;
}


.document-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0;
}

.document-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.document-meta {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--secondary);
}

.document-section h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.document-section h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.document-section p, .document-section ul, .document-section ol {
  margin-bottom: 1.5rem;
}

.document-section ul, .document-section ol {
  padding-left: 1.5rem;
}

.document-section li {
  margin-bottom: 0.5rem;
}


.iti {
  width: 100%;
}


@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-image {
    max-width: 45%;
  }
  
  .kpi-value {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 1000;
    padding: 2rem;
    overflow-y: auto;
  }
  
  .nav-mobile.active {
    display: block;
  }
  
  .nav-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .nav-mobile-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
  }
  
  .nav-mobile-list {
    list-style: none;
    margin: 0;
  }
  
  .nav-mobile-item {
    margin-bottom: 1rem;
  }
  
  .nav-mobile-link {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--light-gray);
  }
  
  .hero {
    text-align: center;
  }
  
  .hero-content {
    padding: 3rem 0;
    max-width: 100%;
  }
  
  .hero-image {
    position: static;
    transform: none;
    max-width: 80%;
    margin: 0 auto 2rem;
  }
  
  .kpi-grid, .card-grid, .infographic-preview, .edu-grid, .step-by-step-grid, .guide-grid, .infographics-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  h1, .hero-title, .step-by-step-title, .guides-title, .infographics-title, .contact-title, .thanks-title, .document-title {
    font-size: 2rem;
  }
  
  h2, .section-title {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .card-grid, .step-by-step-grid, .guide-grid, .infographics-grid {
    gap: 1.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .cookie-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
}