* {
  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;
}

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

.header {
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.framework {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.phase {
  margin-bottom: 40px;
  border-left: 4px solid #667eea;
  padding-left: 30px;
  position: relative;
}

.phase::before {
  content: "";
  width: 20px;
  height: 20px;
  background: #667eea;
  border-radius: 50%;
  position: absolute;
  left: -12px;
  top: 0;
}

.phase-title {
  font-size: 1.8rem;
  color: #667eea;
  margin-bottom: 15px;
  font-weight: 600;
}

.phase-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
  font-style: italic;
}

.steps {
  display: grid;
  gap: 20px;
}

.step {
  background: #f8f9ff;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #764ba2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(118, 75, 162, 0.15);
}

.step-number {
  background: #764ba2;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  float: left;
  margin-right: 15px;
  margin-top: 2px;
}

.step-content h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.step-content p {
  color: #666;
  margin-bottom: 15px;
}

.voice-note {
  background: #e8f4fd;
  border: 2px solid #3498db;
  border-radius: 10px;
  padding: 20px;
  margin: 15px 0;
  position: relative;
}

.voice-note::before {
  content: "🎙️";
  position: absolute;
  top: -10px;
  left: 20px;
  background: #e8f4fd;
  padding: 0 10px;
  font-size: 1.2rem;
}

.voice-title {
  font-weight: bold;
  color: #2980b9;
  margin-bottom: 10px;
}

.action-items {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 10px;
  padding: 20px;
  margin: 15px 0;
}

.action-items h4 {
  color: #856404;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.action-items ul {
  color: #856404;
  padding-left: 20px;
}

.action-items li {
  margin-bottom: 5px;
}

.mindset-shift {
  background: #d1ecf1;
  border: 2px solid #17a2b8;
  border-radius: 10px;
  padding: 20px;
  margin: 15px 0;
}

.mindset-shift h4 {
  color: #0c5460;
  margin-bottom: 10px;
}

.mindset-shift p {
  color: #0c5460;
  font-style: italic;
}

.example-box {
  background: #f8f9fa;
  border: 2px solid #6c757d;
  border-radius: 10px;
  padding: 20px;
  margin: 15px 0;
}

.example-box h4 {
  color: #495057;
  margin-bottom: 10px;
}

.progress-tracker {
  background: #d4edda;
  border: 2px solid #28a745;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}

.progress-tracker h3 {
  color: #155724;
  margin-bottom: 15px;
  text-align: center;
}

.tracker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.tracker-item {
  background: white;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #28a745;
}

.tracker-checkbox {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .framework {
    padding: 25px;
  }

  .header h1 {
    font-size: 2rem;
  }

  .phase-title {
    font-size: 1.5rem;
  }
}
