.content-page {
  padding: 4rem 0;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.content-wrapper h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0rem;
}

.content-wrapper .subtitle {
  text-align: center;
  font-size: 1rem;

}

.content-wrapper h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
}

.content-wrapper p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.content-wrapper li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 1rem;
  list-style: none;
}

.content-wrapper li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.highlight-quote {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary-color);
  border-left: 3px solid var(--accent-color);
  border-right: 3px solid var(--accent-color);
  padding: 1rem 2rem;
  background: #f4fbf9; 
  margin: 2rem 0;
  font-style: italic;
  border-radius: 8px;
}

.strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.strategy-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.strategy-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--accent-color);
}

.strategy-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.strategy-card p {
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #555;
}

.signature-section {
  margin-top: 3rem;
  text-align: right;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}

.signature-img {
  height: 60px; 
  opacity: 0.8;
}

.signature-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.signature-role {
  font-size: 0.85rem;
  color: #777;
  display: block;
}

.signature-section {
  margin-top: 2rem;
  text-align: right;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column; 
  align-items: flex-end;
}

.signature-img {
  width: 200px; 
  height: auto; 
  margin-bottom: 0rem;
  opacity: 0.7; 
}

.signature-details {
  display: flex;
  flex-direction: column;
}

.signature-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.signature-role {
  font-size: 0.85rem;
  color: #777;
  margin-top: 2px;
}
