/* Service Notes Section Styles */
.service-notes-section {
  margin-top: 4rem;
  padding: 2rem 0;
  background: #fdf6e3 !important;
  border-radius: 20px;
}

.service-notes-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 2.5rem;
}

.notes-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f0f0f0;
}

.notes-icon {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.notes-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.notes-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 0;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.note-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.note-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.note-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #d4af37;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.note-text {
  flex: 1;
}

.note-title {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.note-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.notes-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f5ff 0%, #f0ebff 100%);
  border-radius: 12px;
  border: 2px dashed #d0c6ff;
}

.notes-cta-text {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: transparent;
  color: #8a4af3;
  border: 2px solid #8a4af3;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #8a4af3;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(138, 74, 243, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-notes-card {
    padding: 1.5rem;
  }
  
  .notes-grid {
    grid-template-columns: 1fr;
  }
  
  .note-item {
    padding: 1.2rem;
  }
  
  .notes-cta {
    padding: 1.5rem;
  }
  
  .notes-title {
    font-size: 1.5rem;
  }
}