.approach-home {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 48px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.approach-home h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.approach-home p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 16px;
}

.approach-box {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logos-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.logo-small {
  height: 40px;
  width: auto;
}

.logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Adjust as needed for alignment */
}

.brand-chip {
  position: absolute;
  bottom: calc(100% + 5px); /* Position above the logo */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none; /* Allows clicks to pass through */
  z-index: 10;
}

.logo-wrapper:hover .brand-chip {
  opacity: 1;
  visibility: visible;
}

.logo-brenda {
  height: 60px;
  width: auto;
}

.logo-brenda-small {
  height: 30px;
  width: auto;
}

.logo-brenda-tiny {
  height: 20px;
  width: auto;
}

/* Step 2 specific styles */
.logos-container.step2 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.step2-illustration {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.add-task-box {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #f9f9f9;
}

.add-task-plus {
  font-size: 1.2rem;
  color: #007bff;
}

.add-task-button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.add-task-button:hover {
  background-color: #0056b3;
}

/* Step 4 specific styles */
.logos-container.step4 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.client-portal-mockup {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 200px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.document-icon {
  width: 40px;
  height: 40px;
  background-color: #e0e0e0;
  border-radius: 4px;
}

.text-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.text-lines::before,
.text-lines::after {
  content: '';
  display: block;
  height: 8px;
  background-color: #e0e0e0;
  border-radius: 2px;
}

.text-lines::before {
  width: 80%;
}

.text-lines::after {
  width: 60%;
}

.notification-bubble {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.notification-bubble span {
  font-size: 0.9rem;
  color: #333;
}

@media (min-width: 768px) {
  .approach-home {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .approach-home {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
} 