/* Base Styles */
:root {
  --primary-color: #10b981;
  --primary-hover: #059669;
  --secondary-color: #0ea5e9;
  --secondary-hover: #0284c7;
  --tertiary-color: #6366f1;
  --tertiary-hover: #4f46e5;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --background-color: #f9fafb;
  --card-bg: #ffffff;
  --border-color: #e5e7eb;
  --error-color: #ef4444;
  --success-color: #10b981;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.5;
  min-height: 100vh;
}

.app-container {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

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

.hidden {
  display: none !important;
}

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

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: var(--text-color);
}

.logo svg {
  color: var(--primary-color);
}

.logo h1 {
  font-size: 1.25rem;
  font-weight: 600;
}

.back-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-color);
  transition: all 0.2s ease;
}

.back-button:hover {
  background-color: var(--border-color);
}

/* Home Page */
.home-page {
  max-width: 900px;
  margin: 0 auto;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.text-cycling {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 1.5rem;
  overflow: hidden;
  position: relative;
  margin-bottom: 3rem;
}

.text-cycling span {
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
  animation: cycleText 50s infinite;
  color: var(--primary-color);
  font-weight: 500;
}

.text-cycling span:nth-child(2) {
  animation-delay: 5s;
}

.text-cycling span:nth-child(3) {
  animation-delay: 10s;
}

.text-cycling span:nth-child(4) {
  animation-delay: 15s;
}

.text-cycling span:nth-child(5) {
  animation-delay: 20s;
}

.text-cycling span:nth-child(6) {
  animation-delay: 25s;
}

.text-cycling span:nth-child(7) {
  animation-delay: 30s;
}

.text-cycling span:nth-child(8) {
  animation-delay: 35s;
}

.text-cycling span:nth-child(9) {
  animation-delay: 40s;
}

.text-cycling span:nth-child(10) {
  animation-delay: 45s;
}

@keyframes cycleText {
  0%, 100% { opacity: 0; transform: translateY(1rem); }
  1%, 9% { opacity: 1; transform: translateY(0); }
  10% { opacity: 0; transform: translateY(-1rem); }
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.card {
  background-color: var(--card-bg);
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.teal {
  background-color: var(--teal-600);
}

.emerald {
  background-color: var(--emerald-600);
}

.blue {
  background-color: var(--blue-600);
}

.card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.footer-text {
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  text-decoration: none;
}

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

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  text-align: center;
  text-decoration: none;
}

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

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

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

.full-width {
  width: 100%;
}

/* Form Pages */
.form-page {
  max-width: 800px;
  margin: 0 auto;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.card-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

.toggle-mode {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.75rem;
  color: var(--text-color);
  transition: all 0.2s ease;
}

.toggle-mode:hover {
  background-color: var(--border-color);
}

.form-content {
  padding: 2rem;
}

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

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

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

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--text-light);
  pointer-events: none;
}

select, .form-input, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  background-color: white;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text-color);
  transition: border-color 0.2s ease;
}

select {
  appearance: none;
  padding-right: 2.5rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

select:focus, .form-input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.error-message {
  color: var(--error-color);
  font-size: 0.75rem;
  margin-top: 0.5rem;
  min-height: 1rem;
}

.help-text {
  color: var(--text-light);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.file-info {
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--teal-600);
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.form-actions {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-color);
}

/* Success Page */
.success-page {
  max-width: 600px;
  margin: 0 auto;
}

.success-page .card {
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.success-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.success-content {
  position: relative;
  z-index: 1;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-message {
  margin: 1.5rem 0;
  font-size: 1.125rem;
  color: var(--text-color);
}

.info-box {
  background-color: rgba(14, 165, 233, 0.1);
  border-radius: 0.375rem;
  padding: 1.5rem;
  margin: 2rem 0;
}

.info-box p {
  font-size: 0.875rem;
  color: var(--text-color);
}

/* Particles Container */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .main-title {
    font-size: 2rem;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .toggle-mode {
    align-self: flex-end;
  }
  
  .card-content {
    padding: 2rem 1.5rem;
  }
  
  .card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .card p {
    margin-bottom: 1.5rem;
  }
  
  /* Make buttons full-width and consistent on mobile */
  .card .btn-primary, 
  .card .btn-secondary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    margin-top: 10px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 1.75rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .form-content {
    padding: 1.5rem;
  }
  
  .form-actions {
    padding: 1.5rem;
  }
  
  .success-page .card {
    padding: 2rem 1.5rem;
  }
  
  /* Consistent button styling on smaller screens */
  .home-page .btn-primary,
  .home-page .btn-secondary,
  .home-page .btn-tertiary {
    display: block;
    width: 100%; 
    padding: 14px 20px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
}

/* Feedback Links */
.feedback-links {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.feedback-links a {
  color: var(--secondary-color);
  text-decoration: none;
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0;
}

.feedback-links a:hover {
  color: var(--secondary-hover);
  text-decoration: underline;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.modal-container {
  background-color: var(--card-bg);
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 0.25rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background-color: var(--border-color);
}

.modal-content {
  padding: 1.5rem;
}

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

/* Captcha Styles */
.captcha-container {
  margin-top: 1.5rem;
}

.captcha-box {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.captcha-challenge {
  flex: 1;
  height: 50px;
  background-color: #f3f4f6;
  border: 1px solid var(--border-color);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.25rem;
  color: var(--text-color);
  user-select: none;
  position: relative;
  overflow: hidden;
}

.captcha-challenge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 5px,
    rgba(0, 0, 0, 0.03) 5px,
    rgba(0, 0, 0, 0.03) 10px
  );
}

.refresh-captcha {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 0.5rem;
  margin-left: 0.5rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.refresh-captcha:hover {
  background-color: var(--border-color);
}

/* Estilos para la navegación y footer */
.nav-links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
  align-items: center;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links .back-button {
  margin-left: 0.5rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.nav-links .back-button:hover {
  background-color: var(--primary-hover);
}

.nav-links .back-button svg {
  color: white;
}

.site-footer {
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Estilos para la página de FAQ */
.faq-page {
  max-width: 800px;
  margin: 0 auto;
}

.faq-content {
  padding: 1.5rem 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  cursor: pointer;
  background-color: #f9fafb;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #f3f4f6;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
}

.faq-toggle {
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  transition: transform 0.3s;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-toggle.active {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1.25rem;
  background-color: white;
  border-radius: 0 0 0.5rem 0.5rem;
}

.faq-answer.active {
  max-height: 1000px;
  padding: 1.25rem;
  padding-bottom: 2rem;
  border-top: 1px solid #f3f4f6;
}

.faq-answer p {
  margin-top: 0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--text-light);
}

.faq-answer ul {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--text-light);
}

.faq-answer strong {
  color: var(--text-color);
  font-weight: 600;
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }
  
  .nav-links a {
    font-size: 0.8rem;
  }
  
  .faq-content {
    padding: 1rem;
  }
  
  .faq-question {
    padding: 1rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-answer.active {
    padding: 1rem;
  }
}

/* Estilos para checkbox de consentimiento */
.consent-checkbox {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 0.875rem;
  user-select: none;
  color: var(--text-light);
  line-height: 1.5;
}

.checkbox-container input {
  position: absolute;
  opacity: 1;
  cursor: pointer;
  height: 20px;
  width: 20px;
  left: 0;
  top: 2px;
  z-index: 1;
}

.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  transition: all 0.2s ease;
  pointer-events: none;
}

.checkbox-container:hover input ~ .checkmark {
  border-color: var(--primary-color);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.consent-text {
  display: inline-block;
  margin-left: 10px;
  line-height: 1.5;
}

/* Added focus styles */
.checkbox-container input:focus ~ .checkmark {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Error state */
.checkbox-container.error .checkmark {
  border-color: var(--error-color);
}

.checkbox-container.error input:focus ~ .checkmark {
  outline-color: var(--error-color);
}

/* Tooltips */
.tooltip {
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 1000;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Captcha */
.captcha-container {
  margin-bottom: 20px;
}

.captcha-challenge {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.captcha-challenge canvas {
  border-radius: 4px;
  margin-right: 10px;
}

.refresh-captcha {
  background-color: transparent;
  border: none;
  color: #0066cc;
  cursor: pointer;
  padding: 5px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.refresh-captcha:hover {
  color: #004080;
}

.refresh-captcha svg {
  width: 16px;
  height: 16px;
}

.captcha-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

/* Mensajes de éxito */
.success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 100;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a {
    padding: 10px;
    border-bottom: 1px solid #eee;
  }
  
  .nav-links a:last-child {
    border-bottom: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .site-footer {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    margin-top: 10px;
    justify-content: center;
  }
  
  .captcha-challenge {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .captcha-challenge canvas {
    margin-bottom: 10px;
    margin-right: 0;
  }
  
  .refresh-captcha {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* Progress Indicator Styles */
.progress-container {
  margin: 1rem 0;
  text-align: center;
  display: none;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background-color: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 2px;
  animation: progress-animation 1.5s infinite ease-in-out;
  transform-origin: 0% 50%;
}

.progress-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

@keyframes progress-animation {
  0% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(0.5);
  }
  100% {
    transform: scaleX(1);
  }
}

/* Full width card styles */
.full-width-card-container {
  margin-top: 30px;
  width: 100%;
}

.full-width-card {
  width: 100%;
  display: flex;
  justify-content: center;
}

.full-width-card .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  padding: 40px 20px;
}

.full-width-card h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.full-width-card p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  max-width: 550px;
}

.full-width-card .btn-tertiary {
  padding: 12px 24px;
  font-size: 1.05rem;
  display: inline-flex;
  text-align: center;
  text-decoration: none;
}

@media (max-width: 768px) {
  .full-width-card .card-content {
    padding: 30px 15px;
  }
  
  .full-width-card h2 {
    font-size: 1.5rem;
  }
  
  .full-width-card p {
    font-size: 1rem;
  }
  
  .full-width-card .btn-tertiary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    margin-top: 10px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
}

/* Upload options styles */
.upload-options {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.upload-option {
  display: flex;
  align-items: center;
  background-color: rgba(235, 245, 250, 0.7);
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.upload-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: rgba(225, 240, 250, 0.9);
}

.option-icon {
  font-size: 1.2rem;
  margin-right: 8px;
}

.option-text {
  font-weight: 500;
  color: var(--text-color-dark);
} 