/* Asana-Inspired Color System */
:root {
  /* Primary Quadrant Colors (based on Asana design) */
  --color-q1: #4A90E2;           /* Blue - Do First (Urgent & Important) */
  --color-q1-light: #E8F4FD;    /* Light blue for backgrounds */
  --color-q1-border: #4A90E2;   /* Blue for borders */

  --color-q2: #2ECC8F;          /* Green - Schedule (Important & Not Urgent) */
  --color-q2-light: #E8F8F3;    /* Light green for backgrounds */
  --color-q2-border: #2ECC8F;   /* Green for borders */

  --color-q3: #FFA726;          /* Orange/Yellow - Delegate (Urgent & Not Important) */
  --color-q3-light: #FFF4E6;    /* Light orange for backgrounds */
  --color-q3-border: #FFA726;   /* Orange for borders */

  --color-q4: #FF6B6B;          /* Red - Eliminate (Not Important & Not Urgent) */
  --color-q4-light: #FFEBEB;    /* Light red for backgrounds */
  --color-q4-border: #FF6B6B;   /* Red for borders */

  /* Semantic Colors */
  --color-success: #2ECC8F;
  --color-warning: #FFA726;
  --color-error: #FF6B6B;
  --color-info: #4A90E2;

  /* Neutral Colors */
  --color-primary: #4f46e5;
  --color-secondary: #64748b;
  --color-text: #333;
  --color-text-light: #64748b;
  --color-background: #ffffff;
  --color-surface: #f8fafc;
  --color-border: #e2e8f0;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

/* Header */
.app-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.app-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #4f46e5;
  margin: 0;
}

.subtitle {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0.25rem 0 0 0;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.language-selector {
  padding: 0.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  color: #334155;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.language-selector:hover {
  border-color: #4f46e5;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.btn-primary:hover {
  background: #4338ca;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
  background: #64748b;
  color: white;
}

.btn-secondary:hover {
  background: #475569;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(100, 116, 139, 0.3);
}

.btn-battle {
  background: #dc2626;
  color: white;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 12px;
}

.btn-battle:hover {
  background: #b91c1c;
  transform: scale(1.05);
}

.btn-icon {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.2s;
}

.btn-icon:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

.settings-btn {
  font-size: 1.5rem;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
}

.settings-btn:hover {
  background: rgba(79, 70, 229, 0.1);
  transform: scale(1.1);
}

/* Main content */
.app-main {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 0 2rem;
}

/* Matrix container */
.matrix-container {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  min-height: 600px;
}

/* Quadrants */
.quadrant {
  padding: 1.5rem;
  border: 2px solid #e2e8f0;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.quadrant-1 {
  border-top-left-radius: 16px;
  background: linear-gradient(135deg, var(--color-q1-light) 0%, rgba(74, 144, 226, 0.1) 100%);
  border-color: var(--color-q1-border);
}

.quadrant-2 {
  border-top-right-radius: 16px;
  background: linear-gradient(135deg, var(--color-q2-light) 0%, rgba(46, 204, 143, 0.1) 100%);
  border-color: var(--color-q2-border);
}

.quadrant-3 {
  border-bottom-left-radius: 16px;
  background: linear-gradient(135deg, var(--color-q3-light) 0%, rgba(255, 167, 38, 0.1) 100%);
  border-color: var(--color-q3-border);
}

.quadrant-4 {
  border-bottom-right-radius: 16px;
  background: linear-gradient(135deg, var(--color-q4-light) 0%, rgba(255, 107, 107, 0.1) 100%);
  border-color: var(--color-q4-border);
}

.quadrant-header {
  margin-bottom: 1rem;
  text-align: center;
}

.quadrant-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.quadrant-header p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.urgent-important h2 {
  color: var(--color-q1);
}

.not-urgent-important h2 {
  color: var(--color-q2);
}

.urgent-not-important h2 {
  color: var(--color-q3);
}

.not-urgent-not-important h2 {
  color: var(--color-q4);
}

.battle-mode-btn {
  background: #dc2626;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.battle-mode-btn:hover {
  background: #b91c1c;
  transform: scale(1.05);
}

/* Task list */
.task-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
  max-height: 400px;
  padding-right: 0.5rem;
}

.task-list::-webkit-scrollbar {
  width: 4px;
}

.task-list::-webkit-scrollbar-track {
  background: transparent;
}

.task-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}

.empty-quadrant {
  text-align: center;
  color: #64748b;
  font-style: italic;
  padding: 2rem;
  opacity: 0.7;
}

/* Task items */
.task-item {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  border-left: 4px solid #e2e8f0;
  cursor: pointer;
}

.task-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.task-item.completed {
  opacity: 0.6;
  text-decoration: line-through;
}

.task-item.priority-critical {
  border-left-color: var(--color-q1);
  background: linear-gradient(90deg, var(--color-q1-light) 0%, white 10%);
}

.task-item.priority-high {
  border-left-color: var(--color-q2);
  background: linear-gradient(90deg, var(--color-q2-light) 0%, white 10%);
}

.task-item.priority-medium {
  border-left-color: var(--color-q3);
  background: linear-gradient(90deg, var(--color-q3-light) 0%, white 10%);
}

.task-item.priority-low {
  border-left-color: var(--color-q4);
  background: linear-gradient(90deg, var(--color-q4-light) 0%, white 10%);
}

.task-content {
  margin-bottom: 0.5rem;
}

.task-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.task-description {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.task-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: #64748b;
}

.task-meta span {
  background: rgba(0, 0, 0, 0.05);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.task-meta-compact {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 0.25rem;
}

.task-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

/* Matrix labels */
.matrix-labels {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.importance-label {
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-weight: 700;
  color: #64748b;
  font-size: 0.9rem;
  white-space: nowrap;
}

.urgency-label {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  color: #64748b;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* The One display */
.the-one-display {
  background: linear-gradient(135deg, var(--color-q1) 0%, rgba(74, 144, 226, 0.8) 100%);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
  box-shadow: 0 10px 40px rgba(74, 144, 226, 0.3);
}

.the-one-display h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.the-one-task {
  background: white;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Modals */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-content {
  background: white;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

.battle-modal-content {
  max-width: 800px;
}

.report-modal-content {
  max-width: 900px;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

.modal-header h2 {
  color: #1f2937;
  font-size: 1.5rem;
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #64748b;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s;
}

.close-btn:hover {
  background: #f1f5f9;
  color: #1f2937;
}

/* Settings Modal */
.settings-content {
  padding: 1.5rem;
}

.setting-group {
  margin-bottom: 2rem;
}

.setting-group h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.settings-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.setting-description {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.settings-content .language-selector {
  width: 100%;
  max-width: 250px;
}

/* Task form */
.task-form {
  padding: 1.5rem;
}

/* Toggle switches */
.toggle-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  cursor: pointer;
}

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

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: all 0.3s ease;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: all 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
  background-color: #4f46e5;
}

.toggle-switch input:focus + .toggle-slider {
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

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

.toggle-label {
  font-weight: 600;
  color: #374151;
  font-size: 1rem;
  user-select: none;
}

.toggle-switch input:checked + .toggle-slider + .toggle-label {
  color: #4f46e5;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}


.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

/* Battle mode */
.battle-content {
  padding: 1.5rem;
}

.battle-progress {
  background: #f1f5f9;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  transition: width 0.3s ease;
  border-radius: 4px;
}

.progress-text {
  font-weight: 600;
  color: #374151;
  text-align: center;
  display: block;
}

.battle-comparison h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1f2937;
  font-size: 1.25rem;
}

.battle-tasks {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

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

.battle-task h4 {
  color: #64748b;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.task-card {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.battle-vs {
  font-size: 1.5rem;
  font-weight: 900;
  color: #dc2626;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.battle-task-card h5 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.battle-task-card p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.task-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #64748b;
}

.battle-result {
  text-align: center;
  padding: 2rem;
}

.battle-result h3 {
  color: var(--color-success);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.battle-the-one-result,
.battle-up-next-result {
  margin-bottom: 2rem;
}

.battle-result-card {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1rem;
  margin: 0.5rem 0;
  border-left: 4px solid #4f46e5;
}

.battle-result-card h5 {
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.battle-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: #64748b;
  justify-content: center;
  flex-wrap: wrap;
}

/* Reports */
.report-content {
  padding: 2rem;
  max-height: 70vh;
  overflow-y: auto;
}

.report-header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 1rem;
}

.report-header h1 {
  color: #1f2937;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.report-section {
  margin-bottom: 2rem;
}

.report-section h2 {
  color: #374151;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.5rem;
}

.report-task-card {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #4f46e5;
}

.report-task-card h3,
.report-task-card h4 {
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.report-task-item {
  background: white;
  padding: 0.5rem 1rem;
  margin: 0.25rem 0;
  border-radius: 4px;
  border-left: 3px solid #e2e8f0;
  font-size: 0.9rem;
}

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

.report-quadrant {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #e2e8f0;
}

.report-quadrant h4 {
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.report-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.report-stats > div {
  background: #f1f5f9;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: #374151;
}

.report-actions {
  padding: 1rem 2rem;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

/* Notifications */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  z-index: 1100;
  animation: notificationSlideIn 0.3s ease-out;
  max-width: 300px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.notification-success {
  background: var(--color-success);
}

.notification-error {
  background: var(--color-error);
}

.notification-info {
  background: var(--color-info);
}

@keyframes notificationSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Loading */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e2e8f0;
  border-top: 4px solid #4f46e5;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .header-controls {
    width: 100%;
    justify-content: center;
  }

  .matrix-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }

  .quadrant {
    min-height: 200px;
    border-radius: 16px !important;
    margin-bottom: 1rem;
  }

  .matrix-labels {
    display: none;
  }

  .battle-tasks {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .battle-vs {
    order: -1;
  }

  .modal-content {
    width: 95%;
    margin: 1rem;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .task-meta {
    flex-direction: column;
    gap: 0.25rem;
  }

  .report-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .app-main {
    padding: 0 1rem;
  }

  .quadrant {
    padding: 1rem;
  }

  .task-item {
    padding: 0.75rem;
  }

  .task-name {
    font-size: 0.9rem;
  }

  .task-description {
    font-size: 0.8rem;
  }

  .app-header h1 {
    font-size: 1.5rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles */
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #4f46e5;
  outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .quadrant {
    border-width: 3px;
  }

  .task-item {
    border: 2px solid #000;
  }

  .btn {
    border: 2px solid currentColor;
  }
}


/* Footer Styles */
.app-footer {
  margin-top: 4rem;
  padding: 2rem 1rem 1rem;
  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
  color: #6b7280;
  font-size: 0.875rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #4f46e5;
}

.footer-link span:first-child {
  font-size: 1rem;
}

.footer-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
}

.footer-generated {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-subtitle {
  font-size: 0.75rem;
  font-style: italic;
  opacity: 0.8;
  text-align: center;
}

.footer-claude-link {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-claude-link:hover {
  color: #3730a3;
  text-decoration: underline;
}

/* Footer responsive design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-links {
    justify-content: center;
  }
}