/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

.persona-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #e1e8f0;
  margin-right: 25px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.name-title {
  flex-grow: 1;
}

h1 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 5px;
}

.job-title {
  font-size: 18px;
  color: #7f8c8d;
  margin-bottom: 10px;
}

.company-details {
  font-size: 16px;
  color: #95a5a6;
}

.tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.tag {
  padding: 6px 12px;
  background-color: #e1e8f0;
  border-radius: 20px;
  font-size: 14px;
  color: #2c3e50;
}

.main-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.section {
  margin-bottom: 30px;
}

h2 {
  font-size: 20px;
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

.goals-challenges-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.goals-challenges {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
}

ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

li {
  margin-bottom: 8px;
}

.stat-box {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
}

.stat-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #34495e;
}

.stat-value {
  font-size: 24px;
  font-weight: bold;
  color: #3498db;
  margin-bottom: 5px;
}

.stat-description {
  font-size: 14px;
  color: #7f8c8d;
}

.quote {
  font-style: italic;
  border-left: 4px solid #3498db;
  padding-left: 15px;
  margin: 20px 0;
}

.tech-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.tool {
  background-color: #e8f4fc;
  color: #2980b9;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
}

.decision-factors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.factor {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
}

.factor-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #34495e;
}

.journeys {
  margin-bottom: 30px;
}

.journey-step {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}

.journey-step:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #e1e8f0;
}

.journey-step:after {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  height: 18px;
  width: 18px;
  background-color: #3498db;
  border-radius: 50%;
}

.journey-step-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #34495e;
}

@media (max-width: 768px) {
  .main-content {
    grid-template-columns: 1fr;
  }

  .goals-challenges-container {
    grid-template-columns: 1fr;
  }

  .decision-factors {
    grid-template-columns: 1fr;
  }

  .header {
    flex-direction: column;
    text-align: center;
  }

  .profile-image {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
