﻿
:root {
  --primary-color: #656f77;
  --primary-light: #7a8289;
  --primary-dark: #4a5259;
  --text-dark: #1e1e1e;
  --text-medium: #4a5568;
  --text-light: #656f77;
  --border-color: #e5e5e5;
  --bg-light: #f5f5f7;
  --bg-white: #ffffff;
  --success-color: #22c55e;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.terms-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  max-width: 1400px;
  width: 100%;
  margin: 80px auto 0;
  flex: 1;
}

.terms-sidebar {
  background: var(--bg-white);
  border-right: 1px solid var(--border-color);
  height: calc(100vh - 80px);
  position: sticky;
  top: 80px;
  overflow-y: auto;
}

.sidebar-sticky {
  padding: 40px 30px;
}

.terms-sidebar h3 {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-medium);
  margin-bottom: 20px;
}

.terms-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.terms-nav .nav-link {
  text-align: left;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-medium);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  position: relative;
}

.terms-nav .nav-link:hover {
  background: var(--bg-light);
  color: rgba(147, 161, 173, 0.85);
  transform: translateX(4px);
}

.terms-nav .nav-link.active {
  background: rgba(147, 161, 173, 0.95);
  color: white;
  font-weight: 500;
}

.terms-nav .nav-link.active::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: rgba(147, 161, 173, 0.95);
  border-radius: 0 4px 4px 0;
}

.back-btn {
  margin-top: 30px;
  width: 100%;
  padding: 14px 20px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-medium);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-btn:hover {
  background: var(--bg-white);
  border-color: rgba(147, 161, 173, 0.45);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(147, 161, 173, 0.2);
}

.back-btn i {
  width: 18px;
  height: 18px;
}

.terms-content {
  background: var(--bg-white);
  padding: 60px 80px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.terms-header {
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(147, 161, 173, 0.55);
}

.terms-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 1rem, 48px);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.last-update {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.term-section {
  margin-bottom: 60px;
  scroll-margin-top: 100px;
}

.term-section h2 {
  text-align: left;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 32px);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.term-section h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.3rem, 22px);
  font-weight: 400;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 16px;
}

.term-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.term-section p {
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 16px;
}

.term-section ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.term-section ul li {
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
}

.term-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 18px;
}

.mt-20 {
  margin-top: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 30px 0;
  width: 100%;
}

.feature-card {
  background: white;
  padding: 28px;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 160px;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(66, 99, 140, 0.18);
  border-color: var(--primary-color);
  background: var(--bg-light);
}

.feature-card i,
.feature-card svg {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
  stroke: var(--primary-color);
  margin-bottom: 16px;
  display: block;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 8px 0;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
}

.info-box {
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  padding: 24px;
  border-radius: 8px;
  margin: 24px 0;
}

.info-box p {
  margin-bottom: 12px;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.info-box strong {
  color: var(--primary-dark);
  font-weight: 600;
}

.warning-box {
  background: rgba(255, 152, 0, 0.05);
  border-left: 4px solid var(--warning-color);
  padding: 24px;
  border-radius: 8px;
  margin: 24px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.warning-box i {
  width: 24px;
  height: 24px;
  color: var(--warning-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-box p {
  margin: 0;
  flex: 1;
}

.warning-box strong {
  color: var(--warning-color);
}

.responsibility-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.resp-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.resp-item:hover {
  border-color: var(--success-color);
  background: rgba(76, 175, 80, 0.03);
}

.resp-item i {
  width: 24px;
  height: 24px;
  color: var(--success-color);
  flex-shrink: 0;
  margin-top: 4px;
}

.resp-item div {
  flex: 1;
}

.resp-item h4 {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 6px 0;
}

.resp-item p {
  font-size: 14px;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.contact-card {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(66, 99, 140, 0.12);
  border-color: var(--primary-color);
}

.contact-card i {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.contact-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 8px 0;
}

.contact-card p {
  text-align: center;
  font-size: 14px;
  color: var(--text-medium);
  margin: 0 0 4px 0;
}

.contact-card p.small {
  font-size: 12px;
  color: var(--text-light);
}

.terms-footer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 2px solid var(--border-color);
}

.footer-info p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 12px;
}

.footer-info strong {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}

.related-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.related-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.related-links a:hover::after {
  width: 100%;
}

.footer-global {
  background: var(--text-dark);
  color: white;
  padding: 30px 0;
  text-align: center;
  margin-top: 60px;
  width: 100%;
  position: relative;
  left: 0;
  right: 0;
}

.footer-global .footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-global .footer-bottom p {
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.footer-global .footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 16px;
}

.footer-global .footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-global .footer-links a:hover {
  opacity: 1;
}

@media (max-width: 1200px) {
  .terms-container {
    grid-template-columns: 250px 1fr;
  }
  
  .terms-content {
    padding: 50px 60px;
  }
}

@media (max-width: 968px) {
  .terms-container {
    grid-template-columns: 1fr;
  }
  
  .terms-sidebar {
    display: none;
  }
  
  .terms-content {
    padding: 40px 30px;
  }
  
  .terms-header h1 {
    font-size: 36px;
  }
  
  .term-section h2 {
    font-size: 26px;
  }
  
  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .terms-content {
    padding: 30px 20px;
  }
  
  .terms-header h1 {
    font-size: 28px;
  }
  
  .term-section h2 {
    font-size: 22px;
  }
  
  .term-section h3 {
    font-size: 18px;
  }
  
  .term-section p,
  .term-section ul li {
    font-size: 14px;
  }
}


@media (max-width: 480px) {
  .terms-container {
    margin-top: 70px;
  }

  .terms-content {
    padding: 24px 16px;
  }

  .terms-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
  }

  .terms-header h1 {
    font-size: 24px;
  }

  .last-update {
    font-size: 12px;
  }

  .term-section {
    margin-bottom: 40px;
    scroll-margin-top: 80px;
  }

  .term-section h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .term-section h3 {
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  .term-section p,
  .term-section ul li {
    font-size: 14px;
    line-height: 1.7;
  }

  .term-section ul li {
    padding-left: 24px;
    margin-bottom: 10px;
  }

  .search-box {
    padding: 12px 16px;
    margin-bottom: 30px;
  }

  .search-box input {
    font-size: 15px;
  }

  .feature-grid {
    gap: 16px;
    margin: 24px 0;
  }

  .feature-card {
    padding: 20px;
    min-height: auto;
  }

  .feature-card i,
  .feature-card svg {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
  }

  .feature-card h3 {
    font-size: 16px;
  }

  .feature-card p {
    font-size: 13px;
  }

  .info-box,
  .warning-box,
  .troubleshooting-box {
    padding: 18px;
    margin: 20px 0;
  }

  .warning-box {
    flex-direction: column;
    gap: 12px;
  }

  .step-list {
    gap: 16px;
    margin: 24px 0;
  }

  .step-item {
    padding: 18px;
    gap: 14px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .step-item h4 {
    font-size: 16px;
  }

  .step-item p {
    font-size: 14px;
  }

  .responsibility-list {
    gap: 14px;
    margin: 24px 0;
  }

  .resp-item {
    padding: 16px;
    gap: 12px;
  }

  .resp-item i {
    width: 20px;
    height: 20px;
  }

  .resp-item h4 {
    font-size: 15px;
  }

  .resp-item p {
    font-size: 13px;
  }

  .contact-grid {
    gap: 14px;
    margin: 24px 0;
  }

  .contact-card {
    padding: 18px;
  }

  .contact-card i {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
  }

  .contact-card h4 {
    font-size: 15px;
  }

  .contact-card p {
    font-size: 13px;
  }

  .faq-list {
    gap: 12px;
    margin: 24px 0;
  }

  .faq-item-help {
    padding: 18px;
  }

  .faq-item-help h4 {
    font-size: 15px;
  }

  .faq-item-help p {
    font-size: 14px;
  }

  .terms-footer {
    margin-top: 50px;
    padding-top: 30px;
  }

  .footer-info p {
    font-size: 13px;
  }

  .related-links {
    gap: 14px;
  }

  .footer-global {
    padding: 24px 16px;
    margin-top: 40px;
  }

  .footer-global .footer-bottom {
    padding: 0 16px;
  }

  .footer-global .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .footer-global .footer-links a {
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  * {
    box-sizing: border-box;
  }

  .terms-container {
    margin-top: 68px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .terms-content {
    padding: 26px 18px;
    width: 100%;
    max-width: 100%;
  }

  .terms-header {
    margin-bottom: 36px;
    padding-bottom: 22px;
  }

  .terms-header h1 {
    font-size: 1.55rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .last-update {
    font-size: 0.82rem;
  }

  .term-section {
    margin-bottom: 36px;
    scroll-margin-top: 75px;
  }

  .term-section h2 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    line-height: 1.35;
  }

  .term-section h3 {
    font-size: 1.05rem;
    margin-top: 22px;
    margin-bottom: 12px;
  }

  .term-section p,
  .term-section ul li {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .term-section ul {
    padding-left: 6px;
  }

  .term-section ul li {
    padding-left: 22px;
    margin-bottom: 10px;
  }

  .search-box {
    padding: 14px 16px;
    margin-bottom: 28px;
    border-radius: 12px;
    gap: 10px;
  }

  .search-box i {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }

  .search-box input {
    font-size: 16px;
    padding: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 22px 0;
  }

  .feature-card {
    padding: 20px 18px;
    border-radius: 14px;
    min-height: auto;
  }

  .feature-card i,
  .feature-card svg {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
  }

  .feature-card h3 {
    font-size: 1.02rem;
    margin-bottom: 8px;
  }

  .feature-card p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .info-box {
    padding: 18px 16px;
    margin: 22px 0;
    border-radius: 10px;
  }

  .info-box p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .warning-box {
    padding: 18px 16px;
    margin: 22px 0;
    border-radius: 10px;
    flex-direction: column;
    gap: 12px;
  }

  .warning-box i {
    width: 22px;
    height: 22px;
  }

  .warning-box p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .troubleshooting-box {
    padding: 18px 16px;
    margin: 22px 0;
    border-radius: 10px;
  }

  .troubleshooting-box p {
    font-size: 0.9rem;
  }

  .step-list {
    gap: 14px;
    margin: 24px 0;
  }

  .step-item {
    padding: 18px 16px;
    gap: 14px;
    border-radius: 12px;
  }

  .step-number {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 1rem;
  }

  .step-item div {
    flex: 1;
    min-width: 0;
  }

  .step-item h4 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .step-item p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .responsibility-list {
    gap: 12px;
    margin: 22px 0;
  }

  .resp-item {
    padding: 18px 16px;
    gap: 14px;
    border-radius: 12px;
  }

  .resp-item i {
    width: 22px;
    height: 22px;
    min-width: 22px;
  }

  .resp-item h4 {
    font-size: 0.98rem;
    margin-bottom: 6px;
  }

  .resp-item p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 22px 0;
  }

  .contact-card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .contact-card i {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
  }

  .contact-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .contact-card p {
    font-size: 0.88rem;
    margin-bottom: 4px;
  }

  .contact-card p.small {
    font-size: 0.78rem;
  }

  .faq-list {
    gap: 12px;
    margin: 22px 0;
  }

  .faq-item-help {
    padding: 20px 18px;
    border-radius: 14px;
  }

  .faq-item-help h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .faq-item-help p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .help-contact-btn {
    padding: 13px 20px;
    font-size: 0.92rem;
    border-radius: 10px;
    margin-top: 14px;
    min-height: 48px;
  }

  .terms-footer {
    margin-top: 46px;
    padding-top: 26px;
  }

  .footer-info p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 10px;
  }

  .footer-info strong {
    font-size: 1rem;
  }

  .related-links {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 16px;
  }

  .related-links a {
    font-size: 0.88rem;
    padding: 8px 0;
  }

  .footer-global {
    padding: 26px 18px;
    margin-top: 36px;
  }

  .footer-global .footer-bottom {
    padding: 0;
    gap: 14px;
  }

  .footer-global .footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .footer-global .footer-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-global .footer-links a {
    font-size: 0.82rem;
  }
}

@media (max-width: 360px) {
  .terms-content {
    padding: 20px 14px;
  }

  .terms-header h1 {
    font-size: 22px;
  }

  .term-section h2 {
    font-size: 18px;
  }

  .feature-card,
  .step-item,
  .resp-item,
  .contact-card,
  .faq-item-help {
    padding: 14px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .back-btn,
  .help-contact-btn,
  .terms-nav .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .feature-card:hover,
  .step-item:hover,
  .resp-item:hover,
  .contact-card:hover,
  .faq-item-help:hover {
    transform: none;
  }

  .search-box input {
    font-size: 16px; /* Previene zoom en iOS */
  }
}

.terms-sidebar::-webkit-scrollbar {
  width: 6px;
}

.terms-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.terms-sidebar::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}

.terms-sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}


.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.search-box:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(84, 113, 148, 0.1);
}

.search-box i {
  width: 20px;
  height: 20px;
  color: var(--text-light);
}

.search-box input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  color: var(--text-dark);
  outline: none;
}

.search-box input::placeholder {
  color: var(--text-light);
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.step-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item:hover {
  border-color: var(--primary-color);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(84, 113, 148, 0.1);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.step-item div {
  flex: 1;
}

.step-item h4 {
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 8px 0;
}

.step-item p {
  font-size: 15px;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
}

.troubleshooting-box {
  background: rgba(244, 67, 54, 0.03);
  border-left: 4px solid var(--danger-color);
  padding: 24px;
  border-radius: 8px;
  margin: 20px 0;
}

.troubleshooting-box p {
  margin-bottom: 12px;
}

.troubleshooting-box strong {
  color: var(--danger-color);
  font-weight: 600;
}

.troubleshooting-box ul {
  margin-top: 12px;
  margin-bottom: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
}

.faq-item-help {
  padding: 24px;
  background: var(--bg-light);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-help:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(84, 113, 148, 0.1);
}

.faq-item-help h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 12px 0;
}

.faq-item-help p {
  font-size: 15px;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.7;
}

.help-contact-btn {
  margin-top: 12px;
  width: 100%;
  padding: 10px 20px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.help-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(84, 113, 148, 0.3);
  background: var(--primary-dark);
}
